summaryrefslogtreecommitdiffstats
path: root/src/game-server/being.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game-server/being.hpp')
-rw-r--r--src/game-server/being.hpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/game-server/being.hpp b/src/game-server/being.hpp
index 21a15b3..fe17007 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
};