diff options
Diffstat (limited to 'src/irc/irc-commands.c')
-rw-r--r-- | src/irc/irc-commands.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/irc/irc-commands.c b/src/irc/irc-commands.c index 5cfc0e784..9f8ac9fe5 100644 --- a/src/irc/irc-commands.c +++ b/src/irc/irc-commands.c @@ -35,6 +35,10 @@ t_irc_command irc_commands[] = N_("[target]"), N_("target: server"), 0, 1, 1, NULL, irc_cmd_send_admin, NULL }, + { "ame", N_("send a CTCP action to all channels of all connected servers"), + N_("message"), + N_("message: message to send"), + 1, MAX_ARGS, 1, NULL, irc_cmd_send_ame, NULL }, { "amsg", N_("send message to all channels of all connected servers"), N_("text"), N_("text: text to send"), @@ -126,7 +130,7 @@ t_irc_command irc_commands[] = N_("mask: servers matching the mask only\n" "target: server for forwarding request"), 0, 2, 1, NULL, irc_cmd_send_lusers, NULL }, - { "me", N_("send a ctcp action to the current channel"), + { "me", N_("send a CTCP action to the current channel"), N_("message"), N_("message: message to send"), 0, MAX_ARGS, 1, NULL, irc_cmd_send_me, NULL }, |