diff options
Diffstat (limited to 'src/net/tmwa')
-rw-r--r-- | src/net/tmwa/beinghandler.cpp | 4 | ||||
-rw-r--r-- | src/net/tmwa/beinghandler.h | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/net/tmwa/beinghandler.cpp b/src/net/tmwa/beinghandler.cpp index cdc3a59f7..321727e77 100644 --- a/src/net/tmwa/beinghandler.cpp +++ b/src/net/tmwa/beinghandler.cpp @@ -1557,6 +1557,10 @@ void BeingHandler::applyPlayerAction(Being *const being, const uint8_t type) } } +void BeingHandler::viewPlayerEquipment(const Being *const being A_UNUSED) +{ +} + void BeingHandler::processPlaterStatusChange(Net::MessageIn &msg) const { BLOCK_START("BeingHandler::processPlayerStop") diff --git a/src/net/tmwa/beinghandler.h b/src/net/tmwa/beinghandler.h index 596d56b47..f6bbcffae 100644 --- a/src/net/tmwa/beinghandler.h +++ b/src/net/tmwa/beinghandler.h @@ -45,6 +45,8 @@ class BeingHandler final : public MessageHandler, public Ea::BeingHandler void requestRanks(const Rank::Rank rank A_UNUSED) const override final; + void viewPlayerEquipment(const Being *const being) override final; + protected: void processBeingChangeLook(Net::MessageIn &msg) const; |