diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-04-03 23:40:37 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-04-03 23:40:37 +0300 |
commit | b97837101e3ff3eb47d6d4f79cce38dfbeba04c9 (patch) | |
tree | c7f986196a20d6989e160c9bf0634d6303a8711c /src/net/eathena/packetsin.inc | |
parent | bae0bf20b36f224796af64298f6139365e97b815 (diff) | |
download | plus-b97837101e3ff3eb47d6d4f79cce38dfbeba04c9.tar.gz plus-b97837101e3ff3eb47d6d4f79cce38dfbeba04c9.tar.bz2 plus-b97837101e3ff3eb47d6d4f79cce38dfbeba04c9.tar.xz plus-b97837101e3ff3eb47d6d4f79cce38dfbeba04c9.zip |
Add SMSG_PET_STATUS for old packet versions.
Diffstat (limited to 'src/net/eathena/packetsin.inc')
-rw-r--r-- | src/net/eathena/packetsin.inc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/net/eathena/packetsin.inc b/src/net/eathena/packetsin.inc index b4ef62394..b1691a82e 100644 --- a/src/net/eathena/packetsin.inc +++ b/src/net/eathena/packetsin.inc @@ -56,6 +56,7 @@ packet(SMSG_QUEST_LIST, 0x02b1, -1, &QuestRecv::processAddQu packet(SMSG_BEING_VIEW_EQUIPMENT, 0x02d7, -1, &BeingRecv::processBeingViewEquipment, 1); packet(SMSG_PARTY_SETTINGS, 0x0101, 6, &PartyRecv::processPartySettings, 1); packet(SMSG_PLAYER_HP, 0x0106, 10, &BeingRecv::processBeingHp, 1); +packet(SMSG_PET_STATUS, 0x01a2, 35, &PetRecv::processPetStatus, 1); // fake packets for add packet name packet(SMSG_SELECT_CART, 0x0000, 0, nullptr, 0); @@ -519,7 +520,10 @@ if (packetVersion >= 20081113) } // 20081126 -packet(SMSG_PET_STATUS, 0x01a2, 37, &PetRecv::processPetStatus, 20081126); +if (packetVersion >= 20081126) +{ + packet(SMSG_PET_STATUS, 0x01a2, 37, &PetRecv::processPetStatus, 20081126); +} // 20081210 packet(SMSG_AUTOSHADOW_SPELL_LIST, 0x0442, -1, &PlayerRecv::processPlayerAutoShadowSpellList, 20081210); |