summaryrefslogtreecommitdiff
path: root/src/game-server
diff options
context:
space:
mode:
Diffstat (limited to 'src/game-server')
-rw-r--r--src/game-server/monstermanager.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/game-server/monstermanager.cpp b/src/game-server/monstermanager.cpp
index ca823310..b56d263d 100644
--- a/src/game-server/monstermanager.cpp
+++ b/src/game-server/monstermanager.cpp
@@ -167,9 +167,9 @@ void MonsterManager::reload()
if (!attributesComplete) LOG_WARN(monsterReferenceFile
<<": Attributes incomplete for monster #"<<id);
- //for usability reasons we set the speed in the monsters.xml as tiles per second
- //instead of miliseconds per tile.
- monster->setSpeed(1000/speed);
+ //for usability reasons we set the speed in the monsters.xml as pixels
+ //per second instead of miliseconds per tile.
+ monster->setSpeed(32000/speed);
}
else if (xmlStrEqual(subnode->name, BAD_CAST "exp"))