diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-03-12 17:15:11 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-03-12 17:15:11 +0300 |
commit | bc0ccd9664c637d6d3fe62b3cd45b72e3a503ab3 (patch) | |
tree | fbd205442586d112b339e484f09316bbc1bf7971 /src/net/eathena/beinghandler.cpp | |
parent | f5e4b8888afa9b95469903148e4df1544b755bc8 (diff) | |
download | plus-bc0ccd9664c637d6d3fe62b3cd45b72e3a503ab3.tar.gz plus-bc0ccd9664c637d6d3fe62b3cd45b72e3a503ab3.tar.bz2 plus-bc0ccd9664c637d6d3fe62b3cd45b72e3a503ab3.tar.xz plus-bc0ccd9664c637d6d3fe62b3cd45b72e3a503ab3.zip |
eathena: add partial support for packet SMSG_GLADIATOR_FEEL_REQUEST 0x0253.
Diffstat (limited to 'src/net/eathena/beinghandler.cpp')
-rw-r--r-- | src/net/eathena/beinghandler.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/net/eathena/beinghandler.cpp b/src/net/eathena/beinghandler.cpp index 4082d85ef..3d17e8cfc 100644 --- a/src/net/eathena/beinghandler.cpp +++ b/src/net/eathena/beinghandler.cpp @@ -130,6 +130,7 @@ BeingHandler::BeingHandler(const bool enableSync) : SMSG_ALCHEMIST_RANKS_LIST, SMSG_TAEKWON_RANKS_LIST, SMSG_PK_RANKS_LIST, + SMSG_GLADIATOR_FEEL_REQUEST, 0 }; handledMessages = _messages; @@ -378,6 +379,10 @@ void BeingHandler::handleMessage(Net::MessageIn &msg) processPkRanksList(msg); break; + case SMSG_GLADIATOR_FEEL_REQUEST: + processGladiatorFeelRequest(msg); + break; + default: break; } @@ -1818,4 +1823,11 @@ void BeingHandler::processStarsKill(Net::MessageIn &msg) msg.readUInt8("result"); } +void BeingHandler::processGladiatorFeelRequest(Net::MessageIn &msg) +{ + UNIMPLIMENTEDPACKET; + + msg.readUInt8("which"); +} + } // namespace EAthena |