diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2006-01-17 22:15:42 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2006-01-17 22:15:42 +0100 |
commit | 48721c328e574e0ff76c41734b78aab217edbf65 (patch) | |
tree | 95e7cb0a59c26f596e77c9dec962f68a0faceb53 /irc_commands.c | |
parent | daa9e027e8c8d1bc91e104dba985d5d44fef8c77 (diff) |
A KILL command. Unfortunately the user doesn't see the KILL message yet. :-(
Diffstat (limited to 'irc_commands.c')
-rw-r--r-- | irc_commands.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/irc_commands.c b/irc_commands.c index 5f666702..2e225702 100644 --- a/irc_commands.c +++ b/irc_commands.c @@ -614,9 +614,10 @@ static const command_t irc_commands[] = { { "pong", 0, irc_cmd_pong, IRC_CMD_LOGGED_IN }, { "completions", 0, irc_cmd_completions, IRC_CMD_LOGGED_IN }, { "die", 0, NULL, IRC_CMD_OPER_ONLY | IRC_CMD_TO_MASTER }, - { "wallops", 0, NULL, IRC_CMD_OPER_ONLY | IRC_CMD_TO_MASTER }, - { "lilo", 0, NULL, IRC_CMD_OPER_ONLY | IRC_CMD_TO_MASTER }, + { "wallops", 1, NULL, IRC_CMD_OPER_ONLY | IRC_CMD_TO_MASTER }, + { "lilo", 1, NULL, IRC_CMD_OPER_ONLY | IRC_CMD_TO_MASTER }, { "rehash", 0, irc_cmd_rehash, IRC_CMD_OPER_ONLY }, + { "kill", 2, NULL, IRC_CMD_OPER_ONLY | IRC_CMD_TO_MASTER }, { NULL } }; |