diff options
author | Jared Adams <jaxad0127@gmail.com> | 2009-03-01 12:04:03 -0700 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-03-01 12:04:03 -0700 |
commit | e0a6fcba9439ed72ca36c2f95520eafe8b1dbebb (patch) | |
tree | 4f344567b20159103f377bfbfaffc235347b30ad /src/map/clif.c | |
parent | 45ab260d4addc77e66516ebf0f9342cdc9460b32 (diff) | |
download | tmwa-e0a6fcba9439ed72ca36c2f95520eafe8b1dbebb.tar.gz tmwa-e0a6fcba9439ed72ca36c2f95520eafe8b1dbebb.tar.bz2 tmwa-e0a6fcba9439ed72ca36c2f95520eafe8b1dbebb.tar.xz tmwa-e0a6fcba9439ed72ca36c2f95520eafe8b1dbebb.zip |
Fix bug in the whisper to all GMs code
Also remove a redundant space
Diffstat (limited to 'src/map/clif.c')
-rw-r--r-- | src/map/clif.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index 8fe1ae6..41b2d86 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -7527,9 +7527,9 @@ void clif_parse_GlobalMessage(int fd, struct map_session_data *sd) { // S 008c < intif_wis_message_to_gm(wisp_server_name, battle_config.hack_info_GM_level, message, strlen(message) + 1); if (battle_config.spam_ban > 0) - sprintf(message, " This player has been banned for %d hours(s).", battle_config.spam_ban); + sprintf(message, "This player has been banned for %d hours(s).", battle_config.spam_ban); else - sprintf(message, " This player hasn't been banned (Ban option is disabled)."); + sprintf(message, "This player hasn't been banned (Ban option is disabled)."); printf("%s\n", message); intif_wis_message_to_gm(wisp_server_name, battle_config.hack_info_GM_level, message, strlen(message) + 1); |