diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/game-server/being.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/game-server/being.cpp b/src/game-server/being.cpp index 8c2b08c7..2f4e677b 100644 --- a/src/game-server/being.cpp +++ b/src/game-server/being.cpp @@ -294,15 +294,15 @@ void Being::move() || !getModifiedAttribute(ATTR_MOVE_SPEED_RAW)) return; - // Ignore not moving beings - if (mAction == STAND && mDst == getPosition()) - return; - // Remember the current position before moving. This is used by // MapComposite::update() to determine whether a being has moved from one // zone to another. mOld = getPosition(); + // Ignore not moving beings + if (mAction == STAND && mDst == getPosition()) + return; + if (mMoveTime > WORLD_TICK_MS) { // Current move has not yet ended |