From 89ed065dd03979e7029f76cb44185dd9fc861576 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Thu, 12 Mar 2015 13:01:36 +0300 Subject: eathena: add partial support for packet SMSG_PLAYER_FAME_BLACKSMITH 0x021b. --- src/net/eathena/playerhandler.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'src/net/eathena/playerhandler.cpp') 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 -- cgit v1.2.3-70-g09d2