diff options
-rw-r--r-- | src/game-server/monster.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game-server/monster.cpp b/src/game-server/monster.cpp index fe23ba5f..d9083e80 100644 --- a/src/game-server/monster.cpp +++ b/src/game-server/monster.cpp @@ -1,6 +1,6 @@ /* * The Mana Server - * Copyright (C) 2004-2010 The Mana World Development Team + * Copyright (C) 2004-2011 The Mana World Development Team * * This file is part of The Mana Server. * @@ -315,7 +315,7 @@ void Monster::update() else { // We have no target - let's wander around - if (getPosition() == getDestination()) + if (!isTimerRunning(T_M_STROLL) && getPosition() == getDestination()) { if (!isTimerRunning(T_M_KILLSTEAL_PROTECTED)) { |