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/packetsout.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/packetsout.inc')
-rw-r--r-- | src/net/eathena/packetsout.inc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/net/eathena/packetsout.inc b/src/net/eathena/packetsout.inc index 40d4aa569..9e1efc065 100644 --- a/src/net/eathena/packetsout.inc +++ b/src/net/eathena/packetsout.inc @@ -268,5 +268,9 @@ packet(CMSG_SET_STATUS, 0x0b0e); packet(CMSG_ONLINE_LIST, 0x0b0f); #ifdef PACKETS_UPDATE -// condition code here +if (packetVersion >= 20150513) +{ + packet(CMSG_SEARCHSTORE_CLICK, 0x0838); + packet(CMSG_BUYINGSTORE_CLOSE, 0x022d); +} #endif |