summaryrefslogtreecommitdiff
path: root/src/map/packets_struct.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2018-07-08 00:12:31 +0300
committerAndrei Karas <akaras@inbox.ru>2018-07-15 20:36:23 +0300
commitabcbfc3d94be880ad6e8d628a384b182bf421570 (patch)
treeeaec41f2ec52fc9bd40ce9552260e55d4396fe69 /src/map/packets_struct.h
parent6502e477692d10d9e66735f36c850e8ca306741c (diff)
downloadhercules-abcbfc3d94be880ad6e8d628a384b182bf421570.tar.gz
hercules-abcbfc3d94be880ad6e8d628a384b182bf421570.tar.bz2
hercules-abcbfc3d94be880ad6e8d628a384b182bf421570.tar.xz
hercules-abcbfc3d94be880ad6e8d628a384b182bf421570.zip
Update packet PACKET_CZ_PET_EVOLUTION.
Diffstat (limited to 'src/map/packets_struct.h')
-rw-r--r--src/map/packets_struct.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/map/packets_struct.h b/src/map/packets_struct.h
index 72354608b..0f88bd1a4 100644
--- a/src/map/packets_struct.h
+++ b/src/map/packets_struct.h
@@ -1858,7 +1858,11 @@ struct pet_evolution_items {
struct PACKET_CZ_PET_EVOLUTION {
int16 PacketType;
uint16 PacketLength;
- int16 EvolvedPetEggID;
+#if PACKETVER_RE_NUM >= 20180704
+ uint32 EvolvedPetEggID;
+#else
+ uint16 EvolvedPetEggID;
+#endif
// struct pet_evolution_items items[];
} __attribute__((packed));