summaryrefslogtreecommitdiff
path: root/src/net/eathena/beinghandler.cpp
diff options
context:
space:
mode:
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 888c8e46e..7163eb6df 100644
--- a/src/net/eathena/beinghandler.cpp
+++ b/src/net/eathena/beinghandler.cpp
@@ -120,6 +120,7 @@ BeingHandler::BeingHandler(const bool enableSync) :
SMSG_MONSTER_INFO,
SMSG_CLASS_CHANGE,
CMSG_SPIRIT_BALLS,
+ CMSG_SPIRIT_BALL_SINGLE,
CMSG_BLADE_STOP,
CMSG_COMBO_DELAY,
0
@@ -330,6 +331,10 @@ void BeingHandler::handleMessage(Net::MessageIn &msg)
processSpiritBalls(msg);
break;
+ case CMSG_SPIRIT_BALL_SINGLE:
+ processSpiritBallSingle(msg);
+ break;
+
case CMSG_BLADE_STOP:
processBladeStop(msg);
break;
@@ -1688,6 +1693,14 @@ void BeingHandler::processSpiritBalls(Net::MessageIn &msg)
msg.readInt16("spirits amount");
}
+void BeingHandler::processSpiritBallSingle(Net::MessageIn &msg)
+{
+ UNIMPLIMENTEDPACKET;
+
+ msg.readInt32("being id");
+ msg.readInt16("spirits amount");
+}
+
void BeingHandler::processBladeStop(Net::MessageIn &msg)
{
UNIMPLIMENTEDPACKET;