diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-09-05 23:24:04 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-09-06 01:18:58 +0300 |
commit | 6207b391b9f7d58148572fc2e58a858d993ca525 (patch) | |
tree | 82703b59fd83d1773712c8fa9951ccf5253da114 /src/net/ea | |
parent | e0d490b2313976562135f91bf7e723825871b3d4 (diff) | |
download | plus-6207b391b9f7d58148572fc2e58a858d993ca525.tar.gz plus-6207b391b9f7d58148572fc2e58a858d993ca525.tar.bz2 plus-6207b391b9f7d58148572fc2e58a858d993ca525.tar.xz plus-6207b391b9f7d58148572fc2e58a858d993ca525.zip |
Improve reading in processPlayerStop.
Diffstat (limited to 'src/net/ea')
-rw-r--r-- | src/net/ea/beinghandler.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/net/ea/beinghandler.cpp b/src/net/ea/beinghandler.cpp index e609cff21..d43d5dc50 100644 --- a/src/net/ea/beinghandler.cpp +++ b/src/net/ea/beinghandler.cpp @@ -493,8 +493,12 @@ void BeingHandler::processPlayerStop(Net::MessageIn &msg) const dstBeing->setTileCoords(x, y); if (dstBeing->getCurrentAction() == BeingAction::MOVE) dstBeing->setAction(BeingAction::STAND, 0); + BLOCK_END("BeingHandler::processPlayerStop") + return; } } + msg.readInt16("x"); + msg.readInt16("y"); BLOCK_END("BeingHandler::processPlayerStop") } |