summaryrefslogtreecommitdiffstats
path: root/src/Mobs/AggressiveMonster.cpp
diff options
context:
space:
mode:
authorTiger Wang <ziwei.tiger@hotmail.co.uk>2015-08-22 20:35:56 +0200
committerTiger Wang <ziwei.tiger@hotmail.co.uk>2015-08-22 20:35:56 +0200
commite254a76884d7252e6c645eacbc355c894a6d62b4 (patch)
tree13e27f8fc67772af07376c79830107a1037bc8a7 /src/Mobs/AggressiveMonster.cpp
parentCast UINT to WORD to appease warning (diff)
downloadcuberite-e254a76884d7252e6c645eacbc355c894a6d62b4.tar
cuberite-e254a76884d7252e6c645eacbc355c894a6d62b4.tar.gz
cuberite-e254a76884d7252e6c645eacbc355c894a6d62b4.tar.bz2
cuberite-e254a76884d7252e6c645eacbc355c894a6d62b4.tar.lz
cuberite-e254a76884d7252e6c645eacbc355c894a6d62b4.tar.xz
cuberite-e254a76884d7252e6c645eacbc355c894a6d62b4.tar.zst
cuberite-e254a76884d7252e6c645eacbc355c894a6d62b4.zip
Diffstat (limited to 'src/Mobs/AggressiveMonster.cpp')
-rw-r--r--src/Mobs/AggressiveMonster.cpp18
1 files changed, 0 insertions, 18 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<float>(m_FinalDestination.x) - static_cast<float>(m_Target->GetPosX())) < std::numeric_limits<float>::epsilon())
- {
- return false;
- }
- // Difference between destination z and target z is negligible (to 10^-12 precision)
- else if (fabsf(static_cast<float>(m_FinalDestination.z) - static_cast<float>(m_Target->GetPosZ())) > std::numeric_limits<float>::epsilon())
- {
- return false;
- }
- return true;
-}