diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-04-07 00:35:48 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-04-07 00:35:48 +0300 |
commit | 7807ed17587b09c39dcd815a554f48e2f6ecb346 (patch) | |
tree | 4314fe950ecdfb4b58e8651c71ce3945359f098c | |
parent | ad2d52a95890d77100917f7fcabda9ff543cdc02 (diff) | |
download | plus-7807ed17587b09c39dcd815a554f48e2f6ecb346.tar.gz plus-7807ed17587b09c39dcd815a554f48e2f6ecb346.tar.bz2 plus-7807ed17587b09c39dcd815a554f48e2f6ecb346.tar.xz plus-7807ed17587b09c39dcd815a554f48e2f6ecb346.zip |
Move packet CMSG_QUICK_IDENTIFY_ITEM definition.
-rw-r--r-- | src/net/eathena/packetsout.inc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/net/eathena/packetsout.inc b/src/net/eathena/packetsout.inc index 6c71db930..71356ad5f 100644 --- a/src/net/eathena/packetsout.inc +++ b/src/net/eathena/packetsout.inc @@ -277,6 +277,7 @@ packet(CMSG_HOMUNCULUS_MENU, 0x0000, 0, nullptr); packet(CMSG_SEARCHSTORE_CLICK, 0x0000, 0, nullptr); packet(CMSG_BUYINGSTORE_OPEN, 0x0000, 0, nullptr); packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0000, 0, nullptr); +packet(CMSG_QUICK_IDENTIFY_ITEM, 0x0000, 0, nullptr); #else // 20041108 if (packetVersion >= 20041108) @@ -480,6 +481,7 @@ if (packetVersion >= 20141022) // 20150513 if (packetVersion >= 20150513) { + packet(CMSG_QUICK_IDENTIFY_ITEM, 0x0a35, 4, clif->pOneClick_ItemIdentify); packet(CMSG_BUYINGSTORE_CLOSE, 0x022d, 2, clif->pReqCloseBuyingStore); packet(CMSG_HOMUNCULUS_MENU, 0x0817, 5, clif->pHomMenu); packet(CMSG_SEARCHSTORE_CLICK, 0x0838, 12, clif->pSearchStoreInfoListItemClick); @@ -493,6 +495,3 @@ if (packetVersion >= 20150513) packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0835, 2, clif->pSearchStoreInfoNextPage); } #endif - -// 20150513 -packet(CMSG_QUICK_IDENTIFY_ITEM, 0x0a35, 4, clif->pOneClick_ItemIdentify); |