diff options
author | shennetsind <ind@henn.et> | 2013-09-29 15:42:33 -0300 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2013-09-29 15:42:33 -0300 |
commit | 4de6b8e083f5e14ebc5a453af7efce341852be7a (patch) | |
tree | 5e0ad74b3570299a301dc25c8a6228ef1c448036 /src/map/clif.c | |
parent | dbd0dce80cdc7ea02391d5e096b6561f0b598259 (diff) | |
download | hercules-4de6b8e083f5e14ebc5a453af7efce341852be7a.tar.gz hercules-4de6b8e083f5e14ebc5a453af7efce341852be7a.tar.bz2 hercules-4de6b8e083f5e14ebc5a453af7efce341852be7a.tar.xz hercules-4de6b8e083f5e14ebc5a453af7efce341852be7a.zip |
HPM: Status.c Completed
Fully Interfaced.
Moved missing vars and declarations of interest into the interface.
Removed a couple things from pc.h into mmo.h due to circular dependence.
Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src/map/clif.c')
-rw-r--r-- | src/map/clif.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index e260c3a1b..11cce1a2d 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -1322,7 +1322,7 @@ int clif_spawn(struct block_list *bl) if( sd->bg_id && maplist[sd->bl.m].flag.battleground ) clif->sendbgemblem_area(sd); for( i = 0; i < sd->sc_display_count; i++ ) { - clif->sc_load(&sd->bl, sd->bl.id,AREA,StatusIconChangeTable[sd->sc_display[i]->type],sd->sc_display[i]->val1,sd->sc_display[i]->val2,sd->sc_display[i]->val3); + clif->sc_load(&sd->bl, sd->bl.id,AREA,status->IconChangeTable[sd->sc_display[i]->type],sd->sc_display[i]->val1,sd->sc_display[i]->val2,sd->sc_display[i]->val3); } for(i = 1; i < 5; i++){ if( sd->charm[i] > 0 ) @@ -4283,7 +4283,7 @@ void clif_getareachar_pc(struct map_session_data* sd,struct map_session_data* ds clif->charm_single(sd->fd, dstsd, i); } for( i = 0; i < dstsd->sc_display_count; i++ ) { - clif->sc_load(&sd->bl,dstsd->bl.id,SELF,StatusIconChangeTable[dstsd->sc_display[i]->type],dstsd->sc_display[i]->val1,dstsd->sc_display[i]->val2,dstsd->sc_display[i]->val3); + clif->sc_load(&sd->bl,dstsd->bl.id,SELF,status->IconChangeTable[dstsd->sc_display[i]->type],dstsd->sc_display[i]->val1,dstsd->sc_display[i]->val2,dstsd->sc_display[i]->val3); } if( (sd->status.party_id && dstsd->status.party_id == sd->status.party_id) || //Party-mate, or hpdisp setting. (sd->bg_id && sd->bg_id == dstsd->bg_id) || //BattleGround |