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 7f5944f20..12d39531f 100644 --- a/src/net/eathena/playerhandler.cpp +++ b/src/net/eathena/playerhandler.cpp @@ -64,6 +64,7 @@ PlayerHandler::PlayerHandler() : SMSG_MAP_MUSIC, SMSG_ONLINE_LIST, SMSG_PLAYER_NOTIFY_MAPINFO, + SMSG_PLAYER_FAME_BLACKSMITH, 0 }; handledMessages = _messages; @@ -151,6 +152,10 @@ void PlayerHandler::handleMessage(Net::MessageIn &msg) processNotifyMapInfo(msg); break; + case SMSG_PLAYER_FAME_BLACKSMITH: + processPlayerFameBlacksmith(msg); + break; + default: break; } @@ -525,4 +530,11 @@ void PlayerHandler::processNotifyMapInfo(Net::MessageIn &msg) msg.readInt16("type"); } +void PlayerHandler::processPlayerFameBlacksmith(Net::MessageIn &msg) +{ + UNIMPLIMENTEDPACKET; + msg.readInt32("points"); + msg.readInt32("total points"); +} + } // namespace EAthena |