diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-11-06 19:17:04 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-11-06 19:17:04 +0300 |
commit | ef5ed949e3a05620f6211515d7a950743b39babe (patch) | |
tree | 54c2520aa05c28bfb4af6811bf8dcf7f98b118d3 /src/net | |
parent | 208da05ae612c118f1f6d91dca7bbd8670cf2897 (diff) | |
download | plus-ef5ed949e3a05620f6211515d7a950743b39babe.tar.gz plus-ef5ed949e3a05620f6211515d7a950743b39babe.tar.bz2 plus-ef5ed949e3a05620f6211515d7a950743b39babe.tar.xz plus-ef5ed949e3a05620f6211515d7a950743b39babe.zip |
fix fields names for packet CMSG_MAP_SERVER_CONNECT.
Diffstat (limited to 'src/net')
-rw-r--r-- | src/net/eathena/gamehandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/eathena/gamehandler.cpp b/src/net/eathena/gamehandler.cpp index 42910d964..8baae162f 100644 --- a/src/net/eathena/gamehandler.cpp +++ b/src/net/eathena/gamehandler.cpp @@ -127,7 +127,7 @@ void GameHandler::connect() outMsg.writeInt32(token.account_ID, "account id"); outMsg.writeInt32(mCharID, "char id"); outMsg.writeInt32(token.session_ID1, "session key1"); - outMsg.writeInt32(token.session_ID2, "session key2"); + outMsg.writeInt32(0, "tick"); outMsg.writeInt8(Being::genderToInt(token.sex), "sex"); /* if (localPlayer) |