From 5d4faadc8822cf3728b50cea658ad22ffffadfc5 Mon Sep 17 00:00:00 2001 From: reality Date: Mon, 1 Jul 2013 17:11:57 +0000 Subject: [PATCH] fix ~quiet regex? --- modules/kick/commands.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/kick/commands.js b/modules/kick/commands.js index 9c00e51..b2d94c2 100644 --- a/modules/kick/commands.js +++ b/modules/kick/commands.js @@ -238,7 +238,7 @@ var commands = function(dbot) { commands['~ckick'].regex = [/^~ckick ([^ ]+) ([^ ]+) (.+)$/, 4]; commands['~nban'].regex = /^~nban ([\d\.^ ]+)?([^ ]+) (.+)$/; - commands['~quiet'].regex = /^~quiet ([\d\.^ ]+)?([^ ]+)$/; + commands['~quiet'].regex = /^~quiet ([^ ]+)?([^ ]+)$/; return commands; };