diff options
Diffstat (limited to 'src/net/eathena/playerhandler.cpp')
-rw-r--r-- | src/net/eathena/playerhandler.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/net/eathena/playerhandler.cpp b/src/net/eathena/playerhandler.cpp index 94d974be5..9edb50e01 100644 --- a/src/net/eathena/playerhandler.cpp +++ b/src/net/eathena/playerhandler.cpp @@ -71,6 +71,7 @@ PlayerHandler::PlayerHandler() : SMSG_PLAYER_READ_BOOK, SMSG_PLAYER_EQUIP_TICK_ACK, SMSG_AUTOSHADOW_SPELL_LIST, + SMSG_PLAYER_RANK_POINTS, 0 }; handledMessages = _messages; @@ -186,6 +187,10 @@ void PlayerHandler::handleMessage(Net::MessageIn &msg) processPlayerAutoShadowSpellList(msg); break; + case SMSG_PLAYER_RANK_POINTS: + processPlayerRankPoints(msg); + break; + default: break; } @@ -610,4 +615,12 @@ void PlayerHandler::processPlayerAutoShadowSpellList(Net::MessageIn &msg) msg.readInt16("skill id"); } +void PlayerHandler::processPlayerRankPoints(Net::MessageIn &msg) +{ + UNIMPLIMENTEDPACKET; + msg.readInt16("type"); + msg.readInt32("points"); + msg.readInt32("fame"); +} + } // namespace EAthena |