diff options
Diffstat (limited to 'source/Mobs/Monster.cpp')
-rw-r--r-- | source/Mobs/Monster.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/source/Mobs/Monster.cpp b/source/Mobs/Monster.cpp index e8d8f7571..8867c7e60 100644 --- a/source/Mobs/Monster.cpp +++ b/source/Mobs/Monster.cpp @@ -142,7 +142,11 @@ void cMonster::Tick(float a_Dt, MTRand & a_TickRandom) } } } - + + HandlePhysics(a_Dt); + BroadcastMovementUpdate(); + MoveToCorrectChunk(); + Vector3d Distance = m_Destination - GetPosition(); if (Distance.SqrLength() > 0.1f) { @@ -153,10 +157,6 @@ void cMonster::Tick(float a_Dt, MTRand & a_TickRandom) SetPitch( Pitch ); } - HandlePhysics(a_Dt); - BroadcastMovementUpdate(); - MoveToCorrectChunk(); - switch (m_EMState) { case IDLE: |