From a3cdfd61f51665f63a5e05df7e40cf65024e9093 Mon Sep 17 00:00:00 2001 From: ultramage Date: Fri, 5 Oct 2007 20:57:15 +0000 Subject: * REALLY fixed emblem not displaying when a char logs in (compromise between r10624 and r11033 that hopefully works) git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11369 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/map/clif.c | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) (limited to 'src/map/clif.c') diff --git a/src/map/clif.c b/src/map/clif.c index 198220e5d..78917e5c1 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -7796,26 +7796,28 @@ void clif_parse_LoadEndAck(int fd,struct map_session_data *sd) clif_updatestatus(sd,SP_MAXWEIGHT); clif_updatestatus(sd,SP_WEIGHT); + // guild + // (needs to go before clif_spawn() to show guild emblems correctly) + if(sd->status.guild_id) + guild_send_memberinfoshort(sd,1); + if(battle_config.pc_invincible_time > 0) { if(map_flag_gvg(sd->bl.m)) pc_setinvincibletimer(sd,battle_config.pc_invincible_time<<1); else pc_setinvincibletimer(sd,battle_config.pc_invincible_time); } - map_addblock(&sd->bl); // ubNo^ - clif_spawn(&sd->bl); // spawn + map_addblock(&sd->bl); + clif_spawn(&sd->bl); // Party + // (needs to go after clif_spawn() to show hp bars correctly) if(sd->status.party_id) { party_send_movemap(sd); clif_party_hp(sd); // Show hp after displacement [LuzZza] } - // guild - if(sd->status.guild_id) - guild_send_memberinfoshort(sd,1); - if(map[sd->bl.m].flag.pvp) { if(!battle_config.pk_mode) { // remove pvp stuff for pk_mode [Valaris] if (!map[sd->bl.m].flag.pvp_nocalcrank) -- cgit v1.2.3-60-g2f50