diff options
Diffstat (limited to 'src/net/tmwa')
-rw-r--r-- | src/net/tmwa/npchandler.cpp | 4 | ||||
-rw-r--r-- | src/net/tmwa/npchandler.h | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/net/tmwa/npchandler.cpp b/src/net/tmwa/npchandler.cpp index 8e691a808..c8a740fde 100644 --- a/src/net/tmwa/npchandler.cpp +++ b/src/net/tmwa/npchandler.cpp @@ -219,6 +219,10 @@ void NpcHandler::cooking(const CookingType::Type type, { } +void NpcHandler::repair(const int index A_UNUSED) const +{ +} + int NpcHandler::getNpc(Net::MessageIn &msg) { if (msg.getId() == SMSG_NPC_CHOICE diff --git a/src/net/tmwa/npchandler.h b/src/net/tmwa/npchandler.h index 8cb2a531a..e7cfb7fb8 100644 --- a/src/net/tmwa/npchandler.h +++ b/src/net/tmwa/npchandler.h @@ -80,6 +80,8 @@ class NpcHandler final : public MessageHandler, public Ea::NpcHandler void cooking(const CookingType::Type type, const int nameId) const; + + void repair(const int index) const override final; }; } // namespace TmwAthena |