diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-07-06 00:52:53 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-07-15 20:36:16 +0300 |
commit | 540da98b7d2ce92623678281e963c52c8e1f797b (patch) | |
tree | 87396ed9e2e662f04a6d78f8eaeb1c0fe3a771c5 /src/map/packets_struct.h | |
parent | 304f26bf681ac8c003c1979da4855426be60bb09 (diff) | |
download | hercules-540da98b7d2ce92623678281e963c52c8e1f797b.tar.gz hercules-540da98b7d2ce92623678281e963c52c8e1f797b.tar.bz2 hercules-540da98b7d2ce92623678281e963c52c8e1f797b.tar.xz hercules-540da98b7d2ce92623678281e963c52c8e1f797b.zip |
Update packet ZC_FEED_MER.
Diffstat (limited to 'src/map/packets_struct.h')
-rw-r--r-- | src/map/packets_struct.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/map/packets_struct.h b/src/map/packets_struct.h index aa2f376e3..028cefa99 100644 --- a/src/map/packets_struct.h +++ b/src/map/packets_struct.h @@ -1933,6 +1933,16 @@ struct PACKET_ZC_FEED_PET { #endif } __attribute__((packed)); +struct PACKET_ZC_FEED_MER { + int16 packetType; + uint8 result; +#if PACKETVER_RE_NUM >= 20180704 + uint32 itemId; +#else + uint16 itemId; +#endif +} __attribute__((packed)); + #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 |