diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-07-07 09:27:36 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-07-15 20:36:22 +0300 |
commit | 8e7e67f83941048ca58572c89bf926cce5f5f5b4 (patch) | |
tree | 153f3cf8c99b1a02a2ca48f8d4890181ed1d4209 /src/map | |
parent | 9242b8169932bf52b409be4d33aa0f3cfb08f347 (diff) | |
download | hercules-8e7e67f83941048ca58572c89bf926cce5f5f5b4.tar.gz hercules-8e7e67f83941048ca58572c89bf926cce5f5f5b4.tar.bz2 hercules-8e7e67f83941048ca58572c89bf926cce5f5f5b4.tar.xz hercules-8e7e67f83941048ca58572c89bf926cce5f5f5b4.zip |
Update packet ZC_ACK_OPEN_ROULETTE.
Diffstat (limited to 'src/map')
-rw-r--r-- | src/map/packets_struct.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/map/packets_struct.h b/src/map/packets_struct.h index 177aaf668..f12f1fd00 100644 --- a/src/map/packets_struct.h +++ b/src/map/packets_struct.h @@ -1044,7 +1044,11 @@ struct packet_roulette_open_ack { int32 Serial; int8 Step; int8 Idx; - int16 AdditionItemID; +#if PACKETVER_RE_NUM >= 20180704 + uint32 AdditionItemID; +#else + uint16 AdditionItemID; +#endif int32 GoldPoint; int32 SilverPoint; int32 BronzePoint; |