summaryrefslogtreecommitdiff
path: root/src/net/tmwa/beinghandler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/tmwa/beinghandler.cpp')
-rw-r--r--src/net/tmwa/beinghandler.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/net/tmwa/beinghandler.cpp b/src/net/tmwa/beinghandler.cpp
index eb889146d..1d1c5ef11 100644
--- a/src/net/tmwa/beinghandler.cpp
+++ b/src/net/tmwa/beinghandler.cpp
@@ -975,4 +975,17 @@ void BeingHandler::processBeingVisibleOrMove(Net::MessageIn &msg)
BLOCK_END("BeingHandler::processBeingVisibleOrMove")
}
+void BeingHandler::processBeingSpawn(Net::MessageIn &msg)
+{
+ BLOCK_START("BeingHandler::processBeingSpawn")
+ // skipping this packet
+ mSpawnId = msg.readInt32("being id");
+ msg.readInt16("speed");
+ msg.readInt16("opt1");
+ msg.readInt16("opt2");
+ msg.readInt16("option");
+ msg.readInt16("disguise");
+ BLOCK_END("BeingHandler::processBeingSpawn")
+}
+
} // namespace TmwAthena