diff options
author | Andrei Karas <akaras@inbox.ru> | 2019-04-06 18:20:29 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2019-04-07 22:40:03 +0300 |
commit | e610e222c57c1268fce72bc9578b42f655c18545 (patch) | |
tree | 3954ed57ab46f4e403d83215822d6ca4a9e24189 /src/map/packets_struct.h | |
parent | 7ae24dade4167ed76a62905d8f96280ceeee5e52 (diff) | |
download | hercules-e610e222c57c1268fce72bc9578b42f655c18545.tar.gz hercules-e610e222c57c1268fce72bc9578b42f655c18545.tar.bz2 hercules-e610e222c57c1268fce72bc9578b42f655c18545.tar.xz hercules-e610e222c57c1268fce72bc9578b42f655c18545.zip |
Add packet CZ_STYLE_CLOSE
Diffstat (limited to 'src/map/packets_struct.h')
-rw-r--r-- | src/map/packets_struct.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/map/packets_struct.h b/src/map/packets_struct.h index 109532c3e..96337d32b 100644 --- a/src/map/packets_struct.h +++ b/src/map/packets_struct.h @@ -3181,6 +3181,13 @@ struct PACKET_CZ_COOLDOWN_RESET { DEFINE_PACKET_HEADER(CZ_COOLDOWN_RESET, 0x0a88); #endif +#if PACKETVER >= 20151104 +struct PACKET_CZ_STYLE_CLOSE { + int16 packetType; +} __attribute__((packed)); +DEFINE_PACKET_HEADER(CZ_STYLE_CLOSE, 0x0a48); +#endif + #if !defined(sun) && (!defined(__NETBSD__) || __NetBSD_Version__ >= 600000000) // NetBSD 5 and Solaris don't like pragma pack but accept the packed attribute #pragma pack(pop) #endif // not NetBSD < 6 / Solaris |