diff options
Diffstat (limited to 'src/map/clif.c')
-rw-r--r-- | src/map/clif.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index fad10be92..306a83082 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -873,7 +873,9 @@ void clif_set_unit_idle2(struct block_list* bl, struct map_session_data *tsd, en sd = BL_CAST(BL_PC, bl); p.PacketType = idle_unit2Type; +#if PACKETVER >= 20071106 p.objecttype = clif_bl_type(bl); +#endif p.GID = bl->id; p.speed = iStatus->get_speed(bl); p.bodyState = (sc) ? sc->opt1 : 0; @@ -1005,7 +1007,9 @@ void clif_spawn_unit2(struct block_list* bl, enum send_target target) { sd = BL_CAST(BL_PC, bl); p.PacketType = spawn_unit2Type; +#if PACKETVER >= 20071106 p.objecttype = clif_bl_type(bl); +#endif p.GID = bl->id; p.speed = iStatus->get_speed(bl); p.bodyState = (sc) ? sc->opt1 : 0; @@ -1133,7 +1137,7 @@ void clif_set_unit_walking(struct block_list* bl, struct map_session_data *tsd, #if PACKETVER >= 20091103 p.PacketLength = sizeof(p); #endif -#if PACKETVER > 7 +#if PACKETVER >= 20071106 p.objecttype = clif_bl_type(bl); #endif p.GID = bl->id; |