From 20eaa2c27a7110faa22fa1fb84344ab949133133 Mon Sep 17 00:00:00 2001 From: remoitnane Date: Sat, 14 Aug 2010 01:27:25 -0700 Subject: Correct cosmetic issues and make use of message configuration Signed-off-by: Chuck Miller --- src/map/clif.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'src/map/clif.c') diff --git a/src/map/clif.c b/src/map/clif.c index 00b3ea5..e78da71 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -8865,12 +8865,14 @@ void clif_parse_GMHide (int fd, struct map_session_data *sd) if (sd->status.option & OPTION_HIDE) { // OPTION_HIDE = 0x40 sd->status.option &= ~OPTION_HIDE; // OPTION_HIDE = 0x40 - clif_displaymessage (fd, "Invisible: Off."); + /* "Invisible: Off." */ + clif_displaymessage (fd, msg_txt (10)); } else { sd->status.option |= OPTION_HIDE; // OPTION_HIDE = 0x40 - clif_displaymessage (fd, "Invisible: On."); + /* "Invisible: On." */ + clif_displaymessage (fd, msg_txt (11)); } clif_changeoption (&sd->bl); } @@ -8893,7 +8895,8 @@ void clif_parse_GMReqNoChat (int fd, struct map_session_data *sd) if (!battle_config.muting_players) { - clif_displaymessage (fd, "Muting is disabled."); + /* "Muting is disabled." */ + clif_displaymessage (fd, msg_txt (245)); return; } -- cgit v1.2.3-60-g2f50