summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--src/game-server/being.hpp5
2 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index f09002bf..54e16c42 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-10-24 Chuck Miller <shadowmil@gmail.com>
+
+ * src/game-server/being.hpp: Changed direction values to match the
+ client's
+
2008-10-24 David Athay <ko2fan@gmail.com>
* data/scripts/test.lua, data/scripts/libs/libtmw.lua: Fixed example
diff --git a/src/game-server/being.hpp b/src/game-server/being.hpp
index 21a15b3d..fe17007d 100644
--- a/src/game-server/being.hpp
+++ b/src/game-server/being.hpp
@@ -36,11 +36,12 @@ class AttackZone;
/**
* Beings and actors directions
+ * Needs too match client
*/
enum Direction
{
- DIRECTION_DOWN = 1,
- DIRECTION_UP,
+ DIRECTION_UP = 1,
+ DIRECTION_DOWN,
DIRECTION_LEFT,
DIRECTION_RIGHT
};