summaryrefslogtreecommitdiff
path: root/src/game-server/character.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game-server/character.cpp')
-rw-r--r--src/game-server/character.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game-server/character.cpp b/src/game-server/character.cpp
index 3fadf18e..62464023 100644
--- a/src/game-server/character.cpp
+++ b/src/game-server/character.cpp
@@ -148,9 +148,9 @@ void Character::perform()
// wait before next attack
// Note: The auto-attack system will handle the delay between two attacks.
// TODO: Remove this condition when it's done.
- if (mMoveTime > 100)
+ if (mMoveTime > WORLD_TICK_MS)
{
- mMoveTime -= 100;
+ mMoveTime -= WORLD_TICK_MS;
return;
}