diff options
author | Haru <haru@dotalux.com> | 2016-12-03 06:29:06 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2017-09-17 17:48:16 +0200 |
commit | 2b5309e5e393cf3f5fb7678c7e7690aec0511f21 (patch) | |
tree | 89b842b453219dc39171ac0d3f6c1e6f73294dda /src/map/clif.c | |
parent | 20caa41aeae6e49375aeb187c06dc077e330b414 (diff) | |
download | hercules-2b5309e5e393cf3f5fb7678c7e7690aec0511f21.tar.gz hercules-2b5309e5e393cf3f5fb7678c7e7690aec0511f21.tar.bz2 hercules-2b5309e5e393cf3f5fb7678c7e7690aec0511f21.tar.xz hercules-2b5309e5e393cf3f5fb7678c7e7690aec0511f21.zip |
Move other view-related variables to `sd->status.look`
The following variables are now moved to `sd->status.look` (from
`sd->status`): `head_top`, `head_mid`, `head_bottom`, `robe`
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/map/clif.c')
-rw-r--r-- | src/map/clif.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index 77e6d6055..07f394da4 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -1491,8 +1491,8 @@ bool clif_spawn(struct block_list *bl) } if (sd->charm_type != CHARM_TYPE_NONE && sd->charm_count > 0) clif->spiritcharm(sd); - if (sd->status.robe) - clif->refreshlook(bl,bl->id,LOOK_ROBE,sd->status.robe,AREA); + if (sd->status.look.robe != 0) + clif->refreshlook(bl, bl->id, LOOK_ROBE, sd->status.look.robe, AREA); } break; case BL_MOB: @@ -4309,8 +4309,8 @@ void clif_getareachar_unit(struct map_session_data* sd,struct block_list *bl) { clif->specialeffect_single(bl,421,sd->fd); if (tsd->bg_id != 0 && map->list[tsd->bl.m].flag.battleground) clif->sendbgemblem_single(sd->fd,tsd); - if (tsd->status.robe) - clif->refreshlook(&sd->bl,bl->id,LOOK_ROBE,tsd->status.robe,SELF); + if (tsd->status.look.robe != 0) + clif->refreshlook(&sd->bl, bl->id, LOOK_ROBE, tsd->status.look.robe, SELF); } break; case BL_MER: // Devotion Effects |