diff --git a/src/game/Creature.cpp b/src/game/Creature.cpp index 9f2838dda..ab8e79a37 100644 --- a/src/game/Creature.cpp +++ b/src/game/Creature.cpp @@ -2390,7 +2390,7 @@ void Creature::SetActiveObjectState( bool on ) void Creature::SendMonsterMoveWithSpeedToCurrentDestination(Player* player) { float x, y, z; - if(GetMotionMaster()->GetDestination(x, y, z)) + if (!IsStopped() && GetMotionMaster()->GetDestination(x, y, z)) SendMonsterMoveWithSpeed(x, y, z, 0, player); }