diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-11-03 02:09:11 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-11-03 02:09:11 +0300 |
commit | acc5e06a62dd6a368b06829e0ad2a2d2607af341 (patch) | |
tree | 4a2f94b327d3b6db007f2341b094ffde8601a789 /src/net/eathena/packetsin.inc | |
parent | aeb24c79e3b69fafaa082ee586902b87f82a02f1 (diff) | |
download | mv-acc5e06a62dd6a368b06829e0ad2a2d2607af341.tar.gz mv-acc5e06a62dd6a368b06829e0ad2a2d2607af341.tar.bz2 mv-acc5e06a62dd6a368b06829e0ad2a2d2607af341.tar.xz mv-acc5e06a62dd6a368b06829e0ad2a2d2607af341.zip |
Add packet SMSG_QUEST_UPDATE_OBJECTIVES 0x0afe
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 c8c5ef0f7..65c65b593 100644 --- a/src/net/eathena/packetsin.inc +++ b/src/net/eathena/packetsin.inc @@ -1369,6 +1369,7 @@ if (packetVersionZero >= 20181010) { packet(SMSG_QUEST_LIST, 0x0aff, -1, &QuestRecv::processAddQuests, 20181010); packet(SMSG_QUEST_ADD, 0x0b0c, 155, &QuestRecv::processAddQuest, 20181010); + packet(SMSG_QUEST_UPDATE_OBJECTIVES, 0x0afe, -1, &QuestRecv::processUpdateQuestsObjectives, 20181010); } // 20181017 main @@ -1376,6 +1377,7 @@ if (packetVersionMain >= 20181017) { packet(SMSG_QUEST_LIST, 0x0aff, -1, &QuestRecv::processAddQuests, 20181017); packet(SMSG_QUEST_ADD, 0x0b0c, 155, &QuestRecv::processAddQuest, 20181017); + packet(SMSG_QUEST_UPDATE_OBJECTIVES, 0x0afe, -1, &QuestRecv::processUpdateQuestsObjectives, 20181017); } // 20181017 re @@ -1383,6 +1385,7 @@ if (packetVersionRe >= 20181017) { packet(SMSG_QUEST_LIST, 0x0aff, -1, &QuestRecv::processAddQuests, 20181017); packet(SMSG_QUEST_ADD, 0x0b0c, 155, &QuestRecv::processAddQuest, 20181017); + packet(SMSG_QUEST_UPDATE_OBJECTIVES, 0x0afe, -1, &QuestRecv::processUpdateQuestsObjectives, 20181017); } // 20181017 main |