summaryrefslogtreecommitdiff
path: root/src/net/eathena/beinghandler.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-03-17 23:29:06 +0300
committerAndrei Karas <akaras@inbox.ru>2015-03-17 23:29:06 +0300
commitf406fe1a4c6abf9b414fc9110cef80e217cafb62 (patch)
tree10f197efdd5d1b9f5390ceb762da11e520dc56a2 /src/net/eathena/beinghandler.cpp
parent8227aad72c4c6dfd2af4241763bd4dad82441a8e (diff)
downloadplus-f406fe1a4c6abf9b414fc9110cef80e217cafb62.tar.gz
plus-f406fe1a4c6abf9b414fc9110cef80e217cafb62.tar.bz2
plus-f406fe1a4c6abf9b414fc9110cef80e217cafb62.tar.xz
plus-f406fe1a4c6abf9b414fc9110cef80e217cafb62.zip
eathena: add partial support for packet SMSG_BEING_FONT 0x02ef.
Diffstat (limited to 'src/net/eathena/beinghandler.cpp')
-rw-r--r--src/net/eathena/beinghandler.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/net/eathena/beinghandler.cpp b/src/net/eathena/beinghandler.cpp
index 39ab454a1..7f3762e58 100644
--- a/src/net/eathena/beinghandler.cpp
+++ b/src/net/eathena/beinghandler.cpp
@@ -131,6 +131,7 @@ BeingHandler::BeingHandler(const bool enableSync) :
SMSG_PK_RANKS_LIST,
SMSG_GLADIATOR_FEEL_REQUEST,
SMSG_BOSS_MAP_INFO,
+ SMSG_BEING_FONT,
0
};
handledMessages = _messages;
@@ -387,6 +388,10 @@ void BeingHandler::handleMessage(Net::MessageIn &msg)
processBossMapInfo(msg);
break;
+ case SMSG_BEING_FONT:
+ processBeingFont(msg);
+ break;
+
default:
break;
}
@@ -1848,4 +1853,12 @@ void BeingHandler::processBossMapInfo(Net::MessageIn &msg)
msg.readString(24, "monster name"); // really can be used 51 byte?
}
+void BeingHandler::processBeingFont(Net::MessageIn &msg)
+{
+ UNIMPLIMENTEDPACKET;
+
+ msg.readInt32("account id");
+ msg.readInt16("font");
+}
+
} // namespace EAthena