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 7ce018738..b63be0a6d 100644 --- a/src/net/tmwa/playerhandler.cpp +++ b/src/net/tmwa/playerhandler.cpp @@ -181,7 +181,7 @@ void PlayerHandler::setDestination(const int x, const int y, static_cast<unsigned char>(direction)); } -void PlayerHandler::changeAction(const Being::Action action) const +void PlayerHandler::changeAction(const Being::Action &action) const { char type; switch (action) diff --git a/src/net/tmwa/playerhandler.h b/src/net/tmwa/playerhandler.h index 5e15f5a3a..ebfc66874 100644 --- a/src/net/tmwa/playerhandler.h +++ b/src/net/tmwa/playerhandler.h @@ -53,7 +53,7 @@ class PlayerHandler final : public MessageHandler, public Ea::PlayerHandler void setDirection(const unsigned char direction) const override; void setDestination(const int x, const int y, const int direction) const override; - void changeAction(const Being::Action action) const override; + void changeAction(const Being::Action &action) const override; void processOnlineList(Net::MessageIn &msg) const; void requestOnlineList() const override; void updateStatus(const uint8_t status) const override; |