diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-10-05 18:06:53 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-10-05 18:06:53 +0300 |
commit | f087e7797f16ef2698a49be643b89151c6d83a88 (patch) | |
tree | c54e7a15f61e4210e0093503e8f2507756521370 /src/net/tmwa/gamehandler.cpp | |
parent | 35742eeead80cd713e5b418b9f701afe5edccee1 (diff) | |
download | plus-f087e7797f16ef2698a49be643b89151c6d83a88.tar.gz plus-f087e7797f16ef2698a49be643b89151c6d83a88.tar.bz2 plus-f087e7797f16ef2698a49be643b89151c6d83a88.tar.xz plus-f087e7797f16ef2698a49be643b89151c6d83a88.zip |
Rename packet CMSG_CLIENT_PING into CMSG_MAP_PING.
Diffstat (limited to 'src/net/tmwa/gamehandler.cpp')
-rw-r--r-- | src/net/tmwa/gamehandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/tmwa/gamehandler.cpp b/src/net/tmwa/gamehandler.cpp index c7399e9f1..4d6d1998f 100644 --- a/src/net/tmwa/gamehandler.cpp +++ b/src/net/tmwa/gamehandler.cpp @@ -159,7 +159,7 @@ void GameHandler::quit() const void GameHandler::ping(const int tick) const { - MessageOut msg(CMSG_CLIENT_PING); + MessageOut msg(CMSG_MAP_PING); msg.writeInt32(tick, "tick"); } |