diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-03-13 01:20:46 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-03-13 01:20:46 +0300 |
commit | 2eb0a7d5c06b0505d862fde29dd9d9807933959b (patch) | |
tree | 347693f8b06f32853af56970c096bd3b34eaf09f /src/net/eathena/playerhandler.cpp | |
parent | 8f3d15a15e53ddda5930e0a10e17e19d85141ccb (diff) | |
download | plus-2eb0a7d5c06b0505d862fde29dd9d9807933959b.tar.gz plus-2eb0a7d5c06b0505d862fde29dd9d9807933959b.tar.bz2 plus-2eb0a7d5c06b0505d862fde29dd9d9807933959b.tar.xz plus-2eb0a7d5c06b0505d862fde29dd9d9807933959b.zip |
eathena: add partial support for packet SMSG_PLAYER_EQUIP_TICK_ACK 0x02d9.
Diffstat (limited to 'src/net/eathena/playerhandler.cpp')
-rw-r--r-- | src/net/eathena/playerhandler.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/net/eathena/playerhandler.cpp b/src/net/eathena/playerhandler.cpp index e38aab489..500ece81e 100644 --- a/src/net/eathena/playerhandler.cpp +++ b/src/net/eathena/playerhandler.cpp @@ -69,6 +69,7 @@ PlayerHandler::PlayerHandler() : SMSG_PLAYER_UPGRADE_MESSAGE, SMSG_PLAYER_FAME_TAEKWON, SMSG_PLAYER_READ_BOOK, + SMSG_PLAYER_EQUIP_TICK_ACK, 0 }; handledMessages = _messages; @@ -176,6 +177,10 @@ void PlayerHandler::handleMessage(Net::MessageIn &msg) processPlayerReadBook(msg); break; + case SMSG_PLAYER_EQUIP_TICK_ACK: + processPlayerEquipTickAck(msg); + break; + default: break; } @@ -585,4 +590,11 @@ void PlayerHandler::processPlayerReadBook(Net::MessageIn &msg) msg.readInt32("page"); } +void PlayerHandler::processPlayerEquipTickAck(Net::MessageIn &msg) +{ + UNIMPLIMENTEDPACKET; + msg.readInt32("unused"); + msg.readInt32("flag"); +} + } // namespace EAthena |