summaryrefslogtreecommitdiff
path: root/src/map/packets_struct.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2018-12-01 20:03:46 +0300
committerAndrei Karas <akaras@inbox.ru>2018-12-12 23:24:46 +0300
commitd50e10c533cb43d94abf27c7fbb8b5e6c73ce01f (patch)
tree3943e7cd5ea6c528726430df2295ebd90399aa1c /src/map/packets_struct.h
parent22c267cd1256902d24417cbc0cd5689bc7bad60d (diff)
downloadhercules-d50e10c533cb43d94abf27c7fbb8b5e6c73ce01f.tar.gz
hercules-d50e10c533cb43d94abf27c7fbb8b5e6c73ce01f.tar.bz2
hercules-d50e10c533cb43d94abf27c7fbb8b5e6c73ce01f.tar.xz
hercules-d50e10c533cb43d94abf27c7fbb8b5e6c73ce01f.zip
Add packet CZ_STOP_USE_SKILL
Diffstat (limited to 'src/map/packets_struct.h')
-rw-r--r--src/map/packets_struct.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/map/packets_struct.h b/src/map/packets_struct.h
index 69df71791..f6b1a61fb 100644
--- a/src/map/packets_struct.h
+++ b/src/map/packets_struct.h
@@ -2973,6 +2973,12 @@ struct PACKET_CZ_START_USE_SKILL {
uint32 targetId;
} __attribute__((packed));
DEFINE_PACKET_HEADER(CZ_START_USE_SKILL, 0x0b10);
+
+struct PACKET_CZ_STOP_USE_SKILL {
+ int16 packetType;
+ int16 skillId;
+} __attribute__((packed));
+DEFINE_PACKET_HEADER(CZ_STOP_USE_SKILL, 0x0b11);
#endif
#if !defined(sun) && (!defined(__NETBSD__) || __NetBSD_Version__ >= 600000000) // NetBSD 5 and Solaris don't like pragma pack but accept the packed attribute