diff options
author | Jared Adams <jaxad0127@gmail.com> | 2008-10-24 19:10:48 +0000 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2008-10-24 19:10:48 +0000 |
commit | ee4f5d05ef2df6c0cdbb76f30ec57bd1f10cef56 (patch) | |
tree | 57f37e47f94f0aca181a9a2b7230ea5375f9de21 /src/game-server | |
parent | 20fe6419f8d9564e7ab098ead53c6ef5da1519fa (diff) | |
download | manaserv-ee4f5d05ef2df6c0cdbb76f30ec57bd1f10cef56.tar.gz manaserv-ee4f5d05ef2df6c0cdbb76f30ec57bd1f10cef56.tar.xz manaserv-ee4f5d05ef2df6c0cdbb76f30ec57bd1f10cef56.zip |
Changed direction values to match the client's (patch by Chuck Miller)
Diffstat (limited to 'src/game-server')
-rw-r--r-- | src/game-server/being.hpp | 5 |
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 }; |