diff options
Diffstat (limited to 'src/net/tmwa')
-rw-r--r-- | src/net/tmwa/playerhandler.cpp | 2 | ||||
-rw-r--r-- | src/net/tmwa/playerhandler.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/net/tmwa/playerhandler.cpp b/src/net/tmwa/playerhandler.cpp index d2871a456..8a730db8f 100644 --- a/src/net/tmwa/playerhandler.cpp +++ b/src/net/tmwa/playerhandler.cpp @@ -194,7 +194,7 @@ void PlayerHandler::setDestination(const int x, const int y, static_cast<unsigned char>(direction), "destination"); } -void PlayerHandler::changeAction(const BeingAction::Action &action) const +void PlayerHandler::changeAction(const BeingActionT &action) const { char type; switch (action) diff --git a/src/net/tmwa/playerhandler.h b/src/net/tmwa/playerhandler.h index d831d7ab3..f4e9e1e44 100644 --- a/src/net/tmwa/playerhandler.h +++ b/src/net/tmwa/playerhandler.h @@ -51,7 +51,7 @@ class PlayerHandler final : public MessageHandler, public Ea::PlayerHandler void setDirection(const unsigned char direction) const override final; void setDestination(const int x, const int y, const int direction) const override final; - void changeAction(const BeingAction::Action &action) + void changeAction(const BeingActionT &action) const override final; void requestOnlineList() const override final; void updateStatus(const uint8_t status) const override final; |