diff options
Diffstat (limited to 'src/Mobs/Ghast.cpp')
-rw-r--r-- | src/Mobs/Ghast.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/Mobs/Ghast.cpp b/src/Mobs/Ghast.cpp index fe3cc8be3..9ac16866e 100644 --- a/src/Mobs/Ghast.cpp +++ b/src/Mobs/Ghast.cpp @@ -34,9 +34,7 @@ void cGhast::GetDrops(cItems & a_Drops, cEntity * a_Killer) bool cGhast::Attack(std::chrono::milliseconds a_Dt) { - m_AttackInterval += (static_cast<float>(a_Dt.count()) / 1000) * m_AttackRate; - - if ((m_Target != nullptr) && (m_AttackInterval > 3.0)) + if ((m_Target != nullptr) && (m_AttackCoolDownTicksLeft == 0)) { // Setting this higher gives us more wiggle room for attackrate Vector3d Speed = GetLookVector() * 20; @@ -53,8 +51,7 @@ bool cGhast::Attack(std::chrono::milliseconds a_Dt) return false; } m_World->BroadcastSpawnEntity(*GhastBall); - m_AttackInterval = 0.0; - + ResetAttackCooldown(); return true; } return false; |