summaryrefslogtreecommitdiff
path: root/src/map/homunculus.c
diff options
context:
space:
mode:
authorDastgir <dastgirp@gmail.com>2018-07-26 12:26:44 +0530
committerDastgir <dastgirp@gmail.com>2019-10-02 12:46:27 +0530
commitb7b3080c9edec4c2f7d34b4d77b08646d46100eb (patch)
tree00928f303c7106230f400b51850021e2e7667968 /src/map/homunculus.c
parentd026e28fd78f60dfa21da381f17f2a8cc9ae3d11 (diff)
downloadhercules-b7b3080c9edec4c2f7d34b4d77b08646d46100eb.tar.gz
hercules-b7b3080c9edec4c2f7d34b4d77b08646d46100eb.tar.bz2
hercules-b7b3080c9edec4c2f7d34b4d77b08646d46100eb.tar.xz
hercules-b7b3080c9edec4c2f7d34b4d77b08646d46100eb.zip
Moved hardcoded messages from source to messages.conf
Fixes #1282
Diffstat (limited to 'src/map/homunculus.c')
-rw-r--r--src/map/homunculus.c2
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);