diff options
Diffstat (limited to 'src/net/tmwa')
-rw-r--r-- | src/net/tmwa/npchandler.cpp | 7 | ||||
-rw-r--r-- | src/net/tmwa/npchandler.h | 5 |
2 files changed, 12 insertions, 0 deletions
diff --git a/src/net/tmwa/npchandler.cpp b/src/net/tmwa/npchandler.cpp index 0e2701f44..474fa1411 100644 --- a/src/net/tmwa/npchandler.cpp +++ b/src/net/tmwa/npchandler.cpp @@ -207,6 +207,13 @@ void NpcHandler::completeProgressBar() const { } +void NpcHandler::produceMix(const int nameId A_UNUSED, + const int materialId1 A_UNUSED, + const int materialId2 A_UNUSED, + const int materialId3 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 2d53414e6..01aba1e96 100644 --- a/src/net/tmwa/npchandler.h +++ b/src/net/tmwa/npchandler.h @@ -72,6 +72,11 @@ class NpcHandler final : public MessageHandler, public Ea::NpcHandler void processNpcCommand(Net::MessageIn &msg); void processChangeTitle(Net::MessageIn &msg); + + void produceMix(const int nameId, + const int materialId1, + const int materialId2, + const int materialId3) const override final; }; } // namespace TmwAthena |