diff options
author | dotflac <53354133+dotflac@users.noreply.github.com> | 2020-12-06 12:27:53 +0000 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2020-12-06 15:43:36 +0100 |
commit | 4974c2f0a202860f6c31424a1204bb7099b5fa99 (patch) | |
tree | cae5de20202a4b7ef4739fe45b411f1a8bbd033a | |
parent | 33cdf3eb9001a767c96eab9a13382c9c004caa33 (diff) | |
download | weechat-4974c2f0a202860f6c31424a1204bb7099b5fa99.zip |
add -yes to output of /help voice
currently /help voice does not tell you that you need -yes if you are using *. i have changed it to match /help op, /help deop and /help devoice
-rw-r--r-- | src/plugins/irc/irc-command.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/irc/irc-command.c b/src/plugins/irc/irc-command.c index 059bf8446..6a7d14e8b 100644 --- a/src/plugins/irc/irc-command.c +++ b/src/plugins/irc/irc-command.c @@ -7190,7 +7190,7 @@ irc_command_init () weechat_hook_command ( "voice", N_("give voice to nick(s)"), - N_("<nick> [<nick>...]"), + N_("<nick> [<nick>...] || * -yes"), N_("nick: nick or mask (wildcard \"*\" is allowed)\n" " *: give voice to everybody on channel"), "%(nicks)|%*", &irc_command_voice, NULL, NULL); |