summaryrefslogtreecommitdiff
path: root/src/net/eathena/playerhandler.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-02-22 16:41:18 +0300
committerAndrei Karas <akaras@inbox.ru>2015-02-22 16:41:18 +0300
commitd4deed0e785bdb8b6771d861c7ff6576a644767e (patch)
treebe4833ac70aa49630913d8dec54b5ef2e5833f50 /src/net/eathena/playerhandler.cpp
parent9239957b3a21a1498323b7af2b2910bc75f72859 (diff)
downloadplus-d4deed0e785bdb8b6771d861c7ff6576a644767e.tar.gz
plus-d4deed0e785bdb8b6771d861c7ff6576a644767e.tar.bz2
plus-d4deed0e785bdb8b6771d861c7ff6576a644767e.tar.xz
plus-d4deed0e785bdb8b6771d861c7ff6576a644767e.zip
eathena: convert direction to server format before sending it to server.
Diffstat (limited to 'src/net/eathena/playerhandler.cpp')
-rw-r--r--src/net/eathena/playerhandler.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/net/eathena/playerhandler.cpp b/src/net/eathena/playerhandler.cpp
index b5bc87dcf..1fa2d0329 100644
--- a/src/net/eathena/playerhandler.cpp
+++ b/src/net/eathena/playerhandler.cpp
@@ -209,7 +209,8 @@ void PlayerHandler::setDirection(const unsigned char direction) const
createOutPacket(CMSG_PLAYER_CHANGE_DIR);
outMsg.writeInt8(0, "head direction");
outMsg.writeInt8(0, "unused");
- outMsg.writeInt8(direction, "player direction");
+ outMsg.writeInt8(MessageOut::toServerDirection(direction),
+ "player direction");
}
void PlayerHandler::setDestination(const int x, const int y,