diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2006-09-08 20:20:05 +0000 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2006-09-08 20:20:05 +0000 |
commit | 645086753574be8da2414fd01bffe4069d7a8f55 (patch) | |
tree | e8583c5279246b41580e0aec81de5869d48857a2 /src/irc/irc-commands.c | |
parent | bd4d543d507eae887e72d5503e6bc6e1aa1a76de (diff) | |
download | weechat-645086753574be8da2414fd01bffe4069d7a8f55.zip |
Command "/away -all" now allowed when not connected to current server
Diffstat (limited to 'src/irc/irc-commands.c')
-rw-r--r-- | src/irc/irc-commands.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/irc/irc-commands.c b/src/irc/irc-commands.c index a083e07dd..912e7a2b8 100644 --- a/src/irc/irc-commands.c +++ b/src/irc/irc-commands.c @@ -47,7 +47,7 @@ t_irc_command irc_commands[] = N_("[-all] [message]"), N_(" -all: toggle away status on all connected servers\n" "message: message for away (if no message is given, away status is removed)"), - "-all", 0, MAX_ARGS, 1, 1, NULL, irc_cmd_send_away, NULL }, + "-all", 0, MAX_ARGS, 1, 0, NULL, irc_cmd_send_away, NULL }, { "ban", N_("bans nicks or hosts"), N_("[channel] [nickname [nickname ...]]"), N_(" channel: channel for ban\n" |