summaryrefslogtreecommitdiff
path: root/src/net/eathena/beinghandler.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-03-11 19:47:56 +0300
committerAndrei Karas <akaras@inbox.ru>2015-03-11 19:47:56 +0300
commit248b4b33701fedf1a82aa4d09acc87d794273095 (patch)
tree60e99dfb52781779edcfd2404f326eaac81711fa /src/net/eathena/beinghandler.cpp
parentf4f98c7627c1978bc49d156a8b4dbc5d4170f0d8 (diff)
downloadplus-248b4b33701fedf1a82aa4d09acc87d794273095.tar.gz
plus-248b4b33701fedf1a82aa4d09acc87d794273095.tar.bz2
plus-248b4b33701fedf1a82aa4d09acc87d794273095.tar.xz
plus-248b4b33701fedf1a82aa4d09acc87d794273095.zip
eathena: add partial support for packet SMSG_BEING_SLIDE 0x01ff.
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 f5f4044a7..18897c153 100644
--- a/src/net/eathena/beinghandler.cpp
+++ b/src/net/eathena/beinghandler.cpp
@@ -124,6 +124,7 @@ BeingHandler::BeingHandler(const bool enableSync) :
CMSG_BLADE_STOP,
CMSG_COMBO_DELAY,
CMSG_WEDDING_EFFECT,
+ SMSG_BEING_SLIDE,
0
};
handledMessages = _messages;
@@ -348,6 +349,10 @@ void BeingHandler::handleMessage(Net::MessageIn &msg)
processWddingEffect(msg);
break;
+ case SMSG_BEING_SLIDE:
+ processBeingSlide(msg);
+ break;
+
default:
break;
}
@@ -1730,4 +1735,13 @@ void BeingHandler::processWddingEffect(Net::MessageIn &msg)
msg.readInt32("being id");
}
+void BeingHandler::processBeingSlide(Net::MessageIn &msg)
+{
+ UNIMPLIMENTEDPACKET;
+
+ msg.readInt32("being id");
+ msg.readInt16("x");
+ msg.readInt16("y");
+}
+
} // namespace EAthena