diff options
-rw-r--r-- | src/net/ea/beingrecv.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/net/ea/beingrecv.cpp b/src/net/ea/beingrecv.cpp index 72111e4e1..be3cc4cb9 100644 --- a/src/net/ea/beingrecv.cpp +++ b/src/net/ea/beingrecv.cpp @@ -413,6 +413,10 @@ void BeingRecv::processBeingMove3(Net::MessageIn &msg) dstBeing->setWalkSpeed(Vector(speed, speed, 0)); int16_t x = msg.readInt16("x"); int16_t y = msg.readInt16("y"); + + dstBeing->setAction(BeingAction::STAND, 0); + dstBeing->setTileCoords(x, y); + const unsigned char *moves = msg.readBytes(len, "moving path"); Path path; if (moves) |