diff options
-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") } |