diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2006-01-15 12:33:54 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2006-01-15 12:33:54 +0100 |
commit | e0ca412a709c80cc7fe26db0576c2bc38be4a45a (patch) | |
tree | 587269cb4c665168a09d0d3a1b4460af799a9fc6 /irc_commands.c | |
parent | 0431ea17870f5c382fe5fb692c2852ae80432737 (diff) |
s/WALLOP/WALLOPS/, added LILO command.
Diffstat (limited to 'irc_commands.c')
-rw-r--r-- | irc_commands.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/irc_commands.c b/irc_commands.c index 3ef5566e..b2bde17b 100644 --- a/irc_commands.c +++ b/irc_commands.c @@ -607,7 +607,8 @@ 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 }, - { "wallop", 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 }, { NULL } }; |