summaryrefslogtreecommitdiff
path: root/src/net/tmwa
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-09-09 19:31:00 +0300
committerAndrei Karas <akaras@inbox.ru>2014-09-09 19:31:00 +0300
commite234316a0a46677f4523b7b91b5c1cdc22a4fea1 (patch)
treed62d94a5d365b284d4e179fba4b3c0399ffb4a7d /src/net/tmwa
parentc2df86167db6b7a70ca9377b8a0953a2d3513cb8 (diff)
downloadplus-e234316a0a46677f4523b7b91b5c1cdc22a4fea1.tar.gz
plus-e234316a0a46677f4523b7b91b5c1cdc22a4fea1.tar.bz2
plus-e234316a0a46677f4523b7b91b5c1cdc22a4fea1.tar.xz
plus-e234316a0a46677f4523b7b91b5c1cdc22a4fea1.zip
eathena: add packet CMSG_NPC_PRODUCE_MIX 0x018e.
Diffstat (limited to 'src/net/tmwa')
-rw-r--r--src/net/tmwa/npchandler.cpp7
-rw-r--r--src/net/tmwa/npchandler.h5
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