summaryrefslogtreecommitdiff
path: root/src/map/clif.c
diff options
context:
space:
mode:
authorremoitnane <remoit(DOT)nane(AT)gmail(DOT)com>2010-08-14 01:27:25 -0700
committerChuck Miller <shadowmil@gmail.com>2010-08-15 13:51:28 -0400
commit20eaa2c27a7110faa22fa1fb84344ab949133133 (patch)
treec3251868565033c2ca3ca1ff441270492d8a60d1 /src/map/clif.c
parentacf9579a3031e01bde2f38737fd64961e13a467f (diff)
downloadtmwa-20eaa2c27a7110faa22fa1fb84344ab949133133.tar.gz
tmwa-20eaa2c27a7110faa22fa1fb84344ab949133133.tar.bz2
tmwa-20eaa2c27a7110faa22fa1fb84344ab949133133.tar.xz
tmwa-20eaa2c27a7110faa22fa1fb84344ab949133133.zip
Correct cosmetic issues and make use of message configuration
Signed-off-by: Chuck Miller <shadowmil@gmail.com>
Diffstat (limited to 'src/map/clif.c')
-rw-r--r--src/map/clif.c9
1 files changed, 6 insertions, 3 deletions
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;
}