diff options
Diffstat (limited to 'src/net/eathena/questrecv.cpp')
-rw-r--r-- | src/net/eathena/questrecv.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/net/eathena/questrecv.cpp b/src/net/eathena/questrecv.cpp index b77915e3a..db8a1f39d 100644 --- a/src/net/eathena/questrecv.cpp +++ b/src/net/eathena/questrecv.cpp @@ -42,7 +42,13 @@ void QuestRecv::processAddQuest(Net::MessageIn &msg) for (int f = 0; f < num; f ++) { // need use in quests kills list - if (msg.getVersion() >= 20150513) + if (msg.getVersion() >= 20181010) + { + msg.readInt32("hunt ident"); + msg.readInt32("hunt ident2"); + msg.readInt32("mob type"); + } + else if (msg.getVersion() >= 20150513) { msg.readInt32("hunt ident"); msg.readInt32("mob type"); |