diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-11-03 01:59:46 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-11-03 01:59:46 +0300 |
commit | aeb24c79e3b69fafaa082ee586902b87f82a02f1 (patch) | |
tree | 5abbc260619401913ce90ba4c092e2ed8aeb7f16 /src/net/eathena/packetsin.inc | |
parent | 594bec3c5e79a970bb9e24000321c035607fc4ed (diff) | |
download | manaverse-aeb24c79e3b69fafaa082ee586902b87f82a02f1.tar.gz manaverse-aeb24c79e3b69fafaa082ee586902b87f82a02f1.tar.bz2 manaverse-aeb24c79e3b69fafaa082ee586902b87f82a02f1.tar.xz manaverse-aeb24c79e3b69fafaa082ee586902b87f82a02f1.zip |
Add packet SMSG_QUEST_ADD 0x0b0c
Diffstat (limited to 'src/net/eathena/packetsin.inc')
-rw-r--r-- | src/net/eathena/packetsin.inc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/net/eathena/packetsin.inc b/src/net/eathena/packetsin.inc index 388511795..c8c5ef0f7 100644 --- a/src/net/eathena/packetsin.inc +++ b/src/net/eathena/packetsin.inc @@ -1368,18 +1368,21 @@ if (packetVersion >= 20181002) if (packetVersionZero >= 20181010) { packet(SMSG_QUEST_LIST, 0x0aff, -1, &QuestRecv::processAddQuests, 20181010); + packet(SMSG_QUEST_ADD, 0x0b0c, 155, &QuestRecv::processAddQuest, 20181010); } // 20181017 main if (packetVersionMain >= 20181017) { packet(SMSG_QUEST_LIST, 0x0aff, -1, &QuestRecv::processAddQuests, 20181017); + packet(SMSG_QUEST_ADD, 0x0b0c, 155, &QuestRecv::processAddQuest, 20181017); } // 20181017 re if (packetVersionRe >= 20181017) { packet(SMSG_QUEST_LIST, 0x0aff, -1, &QuestRecv::processAddQuests, 20181017); + packet(SMSG_QUEST_ADD, 0x0b0c, 155, &QuestRecv::processAddQuest, 20181017); } // 20181017 main |