summaryrefslogtreecommitdiff
path: root/src/map/packets_struct.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2018-07-20 22:40:23 +0300
committerAndrei Karas <akaras@inbox.ru>2018-07-28 04:41:41 +0300
commit95e77d7d3cb31c7db1df2adb75436db2c37d8211 (patch)
tree92cb249923dfb83c4b59909ddba6ebdc893284d1 /src/map/packets_struct.h
parent953a195826376293a092dc00bd8400dd3c88e37a (diff)
downloadhercules-95e77d7d3cb31c7db1df2adb75436db2c37d8211.tar.gz
hercules-95e77d7d3cb31c7db1df2adb75436db2c37d8211.tar.bz2
hercules-95e77d7d3cb31c7db1df2adb75436db2c37d8211.tar.xz
hercules-95e77d7d3cb31c7db1df2adb75436db2c37d8211.zip
Fix check for packet 0xa43 and related packets.
Diffstat (limited to 'src/map/packets_struct.h')
-rw-r--r--src/map/packets_struct.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/map/packets_struct.h b/src/map/packets_struct.h
index b83463c11..08f8d7881 100644
--- a/src/map/packets_struct.h
+++ b/src/map/packets_struct.h
@@ -346,8 +346,7 @@ enum packet_headers {
#if PACKETVER >= 20171207
partymemberinfo = 0x0ae4,
partyinfo = 0x0ae5,
-#elif PACKETVER >= 20170502
-// [4144] probably 0xa43 packet can works on older clients because in client was added in 2015-10-07
+#elif PACKETVER_MAIN_NUM >= 20170524 || PACKETVER_RE_NUM >= 20170502 || defined(PACKETVER_ZERO)
partymemberinfo = 0x0a43,
partyinfo = 0x0a44,
#else
@@ -1680,8 +1679,7 @@ struct PACKET_ZC_ADD_MEMBER_TO_GROUP {
uint32 GID;
#endif
uint32 leader;
-// [4144] probably 0xa43 packet can works on older clients because in client was added in 2015-10-07
-#if PACKETVER >= 20170502
+#if PACKETVER_MAIN_NUM >= 20170524 || PACKETVER_RE_NUM >= 20170502 || defined(PACKETVER_ZERO)
int16 class;
int16 baseLevel;
#endif
@@ -1704,7 +1702,7 @@ struct PACKET_ZC_GROUP_LIST_SUB {
char mapName[MAP_NAME_LENGTH_EXT];
uint8 leader;
uint8 offline;
-#if PACKETVER >= 20170502
+#if PACKETVER_MAIN_NUM >= 20170524 || PACKETVER_RE_NUM >= 20170502 || defined(PACKETVER_ZERO)
int16 class;
int16 baseLevel;
#endif