diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-01-29 23:59:16 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-01-29 23:59:16 +0300 |
commit | 193ea898e5f549c14c0e4cd0d060785de4fb4bcf (patch) | |
tree | 5a197c07ce247d061352516686495a06ddd4e8e5 /src/net | |
parent | dccd82a3a841e741c59a6db423e9ec1fc471baad (diff) | |
download | plus-193ea898e5f549c14c0e4cd0d060785de4fb4bcf.tar.gz plus-193ea898e5f549c14c0e4cd0d060785de4fb4bcf.tar.bz2 plus-193ea898e5f549c14c0e4cd0d060785de4fb4bcf.tar.xz plus-193ea898e5f549c14c0e4cd0d060785de4fb4bcf.zip |
Fix player mobing message type 2 processing.
Diffstat (limited to 'src/net')
-rw-r--r-- | src/net/tmwa/beinghandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/tmwa/beinghandler.cpp b/src/net/tmwa/beinghandler.cpp index 627db1402..8d279fc32 100644 --- a/src/net/tmwa/beinghandler.cpp +++ b/src/net/tmwa/beinghandler.cpp @@ -590,7 +590,7 @@ void BeingHandler::processPlayerMoveUpdate(Net::MessageIn &msg, int msgType) if (gmstatus & 0x80) dstBeing->setGM(true); - if (msgType == 1) + if (msgType == 1 || msgType == 2) { int type = msg.readInt8(); switch (type) |