From 587ce7d55113f3ae84442b51a490cc63e775b7a2 Mon Sep 17 00:00:00 2001 From: Sezz Date: Thu, 8 Aug 2024 22:23:30 +1000 Subject: [PATCH] Remove magic number --- TombEngine/Objects/TR3/Entity/Raptor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TombEngine/Objects/TR3/Entity/Raptor.cpp b/TombEngine/Objects/TR3/Entity/Raptor.cpp index 24b391593..6710ad9b3 100644 --- a/TombEngine/Objects/TR3/Entity/Raptor.cpp +++ b/TombEngine/Objects/TR3/Entity/Raptor.cpp @@ -21,7 +21,7 @@ namespace TEN::Entities::Creatures::TR3 { constexpr auto RAPTOR_ATTACK_DAMAGE = 100; - constexpr auto RAPTOR_BITE_ATTACK_RANGE = SQUARE(585); + constexpr auto RAPTOR_BITE_ATTACK_RANGE = SQUARE(BLOCK(0.6f)); constexpr auto RAPTOR_JUMP_ATTACK_RANGE = SQUARE(BLOCK(1.5f)); constexpr auto RAPTOR_RUN_ATTACK_RANGE = SQUARE(BLOCK(1.5f));