diff options
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 1462343ef..d69d6b6eb 100644 --- a/src/net/eathena/playerhandler.cpp +++ b/src/net/eathena/playerhandler.cpp @@ -67,6 +67,7 @@ PlayerHandler::PlayerHandler() : SMSG_PLAYER_FAME_BLACKSMITH, SMSG_PLAYER_FAME_ALCHEMIST, SMSG_PLAYER_UPGRADE_MESSAGE, + SMSG_PLAYER_FAME_TAEKWON, 0 }; handledMessages = _messages; @@ -166,6 +167,10 @@ void PlayerHandler::handleMessage(Net::MessageIn &msg) processPlayerUpgradeMessage(msg); break; + case SMSG_PLAYER_FAME_TAEKWON: + processPlayerFameTaekwon(msg); + break; + default: break; } @@ -561,4 +566,11 @@ void PlayerHandler::processPlayerUpgradeMessage(Net::MessageIn &msg) msg.readInt16("item id"); } +void PlayerHandler::processPlayerFameTaekwon(Net::MessageIn &msg) +{ + UNIMPLIMENTEDPACKET; + msg.readInt32("points"); + msg.readInt32("total points"); +} + } // namespace EAthena |