diff options
Diffstat (limited to 'src/net/tmwa')
-rw-r--r-- | src/net/tmwa/npchandler.cpp | 5 | ||||
-rw-r--r-- | src/net/tmwa/npchandler.h | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/src/net/tmwa/npchandler.cpp b/src/net/tmwa/npchandler.cpp index 474fa1411..8e691a808 100644 --- a/src/net/tmwa/npchandler.cpp +++ b/src/net/tmwa/npchandler.cpp @@ -214,6 +214,11 @@ void NpcHandler::produceMix(const int nameId A_UNUSED, { } +void NpcHandler::cooking(const CookingType::Type type, + const int nameId) 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 01aba1e96..8cb2a531a 100644 --- a/src/net/tmwa/npchandler.h +++ b/src/net/tmwa/npchandler.h @@ -77,6 +77,9 @@ class NpcHandler final : public MessageHandler, public Ea::NpcHandler const int materialId1, const int materialId2, const int materialId3) const override final; + + void cooking(const CookingType::Type type, + const int nameId) const; }; } // namespace TmwAthena |