diff options
Diffstat (limited to 'src/net/tmwa/playerhandler.cpp')
-rw-r--r-- | src/net/tmwa/playerhandler.cpp | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/src/net/tmwa/playerhandler.cpp b/src/net/tmwa/playerhandler.cpp index 6078dd761..3f8bdab7b 100644 --- a/src/net/tmwa/playerhandler.cpp +++ b/src/net/tmwa/playerhandler.cpp @@ -707,9 +707,18 @@ void PlayerHandler::changeAction(Being::Action action) char type; switch (action) { - case Being::SIT: type = 2; break; - case Being::STAND: type = 3; break; - default: return; + case Being::SIT: + type = 2; + break; + case Being::STAND: + type = 3; + break; + default: + case Being::MOVE: + case Being::ATTACK: + case Being::DEAD: + case Being::HURT: + return; } MessageOut outMsg(CMSG_PLAYER_CHANGE_ACT); |