summaryrefslogtreecommitdiff
path: root/src/net/eathena/beinghandler.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-03-11 15:00:25 +0300
committerAndrei Karas <akaras@inbox.ru>2015-03-11 15:00:25 +0300
commit3940228a5d6be203454f521c17f01f666564cd31 (patch)
tree5a60fd808b63cea66c646703c8762c045574585f /src/net/eathena/beinghandler.cpp
parent70aa8d620ec337d629e096f2f7c8cdaa2104fb53 (diff)
downloadplus-3940228a5d6be203454f521c17f01f666564cd31.tar.gz
plus-3940228a5d6be203454f521c17f01f666564cd31.tar.bz2
plus-3940228a5d6be203454f521c17f01f666564cd31.tar.xz
plus-3940228a5d6be203454f521c17f01f666564cd31.zip
eathena: add partial support for packet SMSG_CLASS_CHANGE 0x01b0.
Diffstat (limited to 'src/net/eathena/beinghandler.cpp')
-rw-r--r--src/net/eathena/beinghandler.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/net/eathena/beinghandler.cpp b/src/net/eathena/beinghandler.cpp
index 603b7a56d..b7ea9024d 100644
--- a/src/net/eathena/beinghandler.cpp
+++ b/src/net/eathena/beinghandler.cpp
@@ -118,6 +118,7 @@ BeingHandler::BeingHandler(const bool enableSync) :
SMSG_BEING_MOVE3,
SMSG_BEING_ATTRS,
SMSG_MONSTER_INFO,
+ SMSG_CLASS_CHANGE,
0
};
handledMessages = _messages;
@@ -318,6 +319,10 @@ void BeingHandler::handleMessage(Net::MessageIn &msg)
processMonsterInfo(msg);
break;
+ case SMSG_CLASS_CHANGE:
+ processClassChange(msg);
+ break;
+
default:
break;
}
@@ -1651,4 +1656,13 @@ void BeingHandler::processMonsterInfo(Net::MessageIn &msg)
msg.readInt16("ele");
}
+void BeingHandler::processClassChange(Net::MessageIn &msg)
+{
+ UNIMPLIMENTEDPACKET;
+
+ msg.readInt32("being id");
+ msg.readUInt8("type");
+ msg.readInt32("class");
+}
+
} // namespace EAthena