diff options
-rw-r--r-- | src/map/clif.c | 2 | ||||
-rw-r--r-- | src/map/packets_struct.h | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index 74bda42fb..0e5765cfc 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -1369,7 +1369,7 @@ static void clif_set_unit_walking(struct block_list *bl, struct map_session_data p.weapon = vd->weapon; p.accessory = vd->head_bottom; p.moveStartTime = (unsigned int)timer->gettick(); -#if PACKETVER < 7 +#if PACKETVER < 7 || PACKETVER_RE_NUM >= 20180704 p.shield = vd->shield; #endif p.accessory2 = vd->head_top; diff --git a/src/map/packets_struct.h b/src/map/packets_struct.h index 1b36fc8b1..573215530 100644 --- a/src/map/packets_struct.h +++ b/src/map/packets_struct.h @@ -735,6 +735,9 @@ struct packet_unit_walking { #else int32 weapon; #endif +#if PACKETVER_RE_NUM >= 20180704 + int32 shield; +#endif int16 accessory; uint32 moveStartTime; #if PACKETVER < 7 |