diff options
author | James Booth <boothj5@gmail.com> | 2014-10-18 20:35:23 +0100 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2014-10-18 20:35:23 +0100 |
commit | bbf807ea9794030c6ddb4f6c9f4b616e842862d1 (patch) | |
tree | 478c00967345d67a775764e5e1c0a85787990920 /src/command | |
parent | fc049c9eefd740fdc2a9a271150cbcca5d7b2022 (diff) | |
download | profani-tty-bbf807ea9794030c6ddb4f6c9f4b616e842862d1.tar.gz |
Fixed message on /ban in private conversations
Diffstat (limited to 'src/command')
-rw-r--r-- | src/command/commands.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command/commands.c b/src/command/commands.c index ea789192..3bc595af 100644 --- a/src/command/commands.c +++ b/src/command/commands.c @@ -2120,7 +2120,7 @@ cmd_ban(gchar **args, struct cmd_help_t help) win_type_t win_type = ui_current_win_type(); if (win_type != WIN_MUC) { - cons_show("Command '/kick' only applies in chat rooms."); + cons_show("Command '/ban' only applies in chat rooms."); return TRUE; } |