fix ~quiet regex?

This commit is contained in:
reality 2013-07-01 17:11:57 +00:00
parent 3ed36188fa
commit 5d4faadc88

View File

@ -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;
};