diff options
author | Haru <haru@dotalux.com> | 2019-10-18 13:15:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-18 13:15:22 +0200 |
commit | ad460000f3f4af4dba1cdc2d9ce466b81c2dcf08 (patch) | |
tree | 9cef997bc7c05216c156f4b517802ecdf2931ca3 /src/map/homunculus.c | |
parent | be66e6f50c078cb712b8152357325fdaa6d9f35f (diff) | |
parent | b7b3080c9edec4c2f7d34b4d77b08646d46100eb (diff) | |
download | hercules-ad460000f3f4af4dba1cdc2d9ce466b81c2dcf08.tar.gz hercules-ad460000f3f4af4dba1cdc2d9ce466b81c2dcf08.tar.bz2 hercules-ad460000f3f4af4dba1cdc2d9ce466b81c2dcf08.tar.xz hercules-ad460000f3f4af4dba1cdc2d9ce466b81c2dcf08.zip |
Merge pull request #2152 from dastgirp/clif_messages
Moved hardcoded messages to conf
Diffstat (limited to 'src/map/homunculus.c')
-rw-r--r-- | src/map/homunculus.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/homunculus.c b/src/map/homunculus.c index 43cb8d84b..fbb94334c 100644 --- a/src/map/homunculus.c +++ b/src/map/homunculus.c @@ -401,7 +401,7 @@ static bool homunculus_levelup(struct homun_data *hd) if ( battle_config.homunculus_show_growth ) { char output[256] ; sprintf(output, - "Growth: hp:%d sp:%d str(%.2f) agi(%.2f) vit(%.2f) int(%.2f) dex(%.2f) luk(%.2f) ", + msg_sd(hd->master, 892), // Growth: hp:%d sp:%d str(%.2f) agi(%.2f) vit(%.2f) int(%.2f) dex(%.2f) luk(%.2f) growth_max_hp, growth_max_sp, growth_str/10.0, growth_agi/10.0, growth_vit/10.0, growth_int/10.0, growth_dex/10.0, growth_luk/10.0); |