diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-01-13 22:42:13 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-01-13 22:42:13 +0300 |
commit | 4466f50d7bb2d83d2b3cd86d85aff14486f84756 (patch) | |
tree | 116a29b5c4a4efc6789e812814156fbd240c6865 /src/net/eathena/packetsin.inc | |
parent | 027112ebe8e30a23e0478eae27861e95b12ccb69 (diff) | |
download | plus-4466f50d7bb2d83d2b3cd86d85aff14486f84756.tar.gz plus-4466f50d7bb2d83d2b3cd86d85aff14486f84756.tar.bz2 plus-4466f50d7bb2d83d2b3cd86d85aff14486f84756.tar.xz plus-4466f50d7bb2d83d2b3cd86d85aff14486f84756.zip |
Add support for packet version 20150513.
Diffstat (limited to 'src/net/eathena/packetsin.inc')
-rw-r--r-- | src/net/eathena/packetsin.inc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/net/eathena/packetsin.inc b/src/net/eathena/packetsin.inc index ee95e4cf9..6ea86aef2 100644 --- a/src/net/eathena/packetsin.inc +++ b/src/net/eathena/packetsin.inc @@ -466,4 +466,7 @@ if (serverVersion >= 8 && packetVersion >= 20150226) if (packetVersion >= 20150513) { packet(SMSG_DRESS_ROOM_OPEN, 0x0a02, 4, &PlayerRecv::processDressRoomOpen); + packet(SMSG_BEING_VISIBLE, 0x09ff, -1, &BeingRecv::processBeingVisible); + packet(SMSG_BEING_SPAWN, 0x09fe, -1, &BeingRecv::processBeingSpawn); + packet(SMSG_BEING_MOVE, 0x09fd, -1, &BeingRecv::processBeingMove); } |