diff options
author | Kenpachi Developer <Kenpachi.Developer@gmx.de> | 2020-06-22 02:59:11 +0200 |
---|---|---|
committer | Kenpachi Developer <Kenpachi.Developer@gmx.de> | 2020-06-22 02:59:11 +0200 |
commit | 584f1e0797ae83fc760ec607ab134166f6426417 (patch) | |
tree | 8738ba2c2fcdbe59ad7ce3a740e3cc9a734b0cd2 /src/map | |
parent | 98cdd80b545645fe8c5d398e37575f182fd0d4d8 (diff) | |
download | hercules-584f1e0797ae83fc760ec607ab134166f6426417.tar.gz hercules-584f1e0797ae83fc760ec607ab134166f6426417.tar.bz2 hercules-584f1e0797ae83fc760ec607ab134166f6426417.tar.xz hercules-584f1e0797ae83fc760ec607ab134166f6426417.zip |
Show rate modifier messages after configuration messages
Diffstat (limited to 'src/map')
-rw-r--r-- | src/map/clif.c | 2 | ||||
-rw-r--r-- | src/map/pc.c | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index f4e6cab80..03432c9e4 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -10958,6 +10958,8 @@ static void clif_parse_LoadEndAck(int fd, struct map_session_data *sd) clif->zc_config(sd, CZ_CONFIG_HOMUNCULUS_AUTOFEEDING, false); #endif + clif->show_modifiers(sd); + bool flee_penalty = (battle_config.bg_flee_penalty != 100 || battle_config.gvg_flee_penalty != 100); bool is_gvg = (map_flag_gvg2(sd->state.pmap) || map_flag_gvg2(sd->bl.m)); bool is_bg = (map->list[sd->state.pmap].flag.battleground != 0 || map->list[sd->bl.m].flag.battleground != 0); diff --git a/src/map/pc.c b/src/map/pc.c index c1261c839..633d13075 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -12117,7 +12117,6 @@ static void pc_scdata_received(struct map_session_data *sd) { nullpo_retv(sd); pc->inventory_rentals(sd); - clif->show_modifiers(sd); if (sd->expiration_time != 0) { // don't display if it's unlimited or unknow value time_t exp_time = sd->expiration_time; |