From e254a76884d7252e6c645eacbc355c894a6d62b4 Mon Sep 17 00:00:00 2001 From: Tiger Wang Date: Sat, 22 Aug 2015 19:35:56 +0100 Subject: Removed unused function * Fixes #2444 --- src/Mobs/AggressiveMonster.cpp | 18 ------------------ src/Mobs/AggressiveMonster.h | 5 ----- 2 files changed, 23 deletions(-) diff --git a/src/Mobs/AggressiveMonster.cpp b/src/Mobs/AggressiveMonster.cpp index 7fde1e56b..65bda2dff 100644 --- a/src/Mobs/AggressiveMonster.cpp +++ b/src/Mobs/AggressiveMonster.cpp @@ -104,21 +104,3 @@ void cAggressiveMonster::Attack(std::chrono::milliseconds a_Dt) m_AttackInterval = 0.0; m_Target->TakeDamage(dtMobAttack, this, m_AttackDamage, 0); } - - - - -bool cAggressiveMonster::IsMovingToTargetPosition() -{ - // Difference between destination x and target x is negligible (to 10^-12 precision) - if (fabsf(static_cast(m_FinalDestination.x) - static_cast(m_Target->GetPosX())) < std::numeric_limits::epsilon()) - { - return false; - } - // Difference between destination z and target z is negligible (to 10^-12 precision) - else if (fabsf(static_cast(m_FinalDestination.z) - static_cast(m_Target->GetPosZ())) > std::numeric_limits::epsilon()) - { - return false; - } - return true; -} diff --git a/src/Mobs/AggressiveMonster.h b/src/Mobs/AggressiveMonster.h index f64c1103f..f46a5c1ef 100644 --- a/src/Mobs/AggressiveMonster.h +++ b/src/Mobs/AggressiveMonster.h @@ -21,11 +21,6 @@ public: virtual void EventSeePlayer(cEntity *) override; virtual void Attack(std::chrono::milliseconds a_Dt); - -protected: - /** Whether this mob's destination is the same as its target's position. */ - bool IsMovingToTargetPosition(); - } ; -- cgit v1.2.3