3
0
mirror of https://github.com/reality/dbot.git synced 2024-11-27 22:39:26 +01:00

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['~ckick'].regex = [/^~ckick ([^ ]+) ([^ ]+) (.+)$/, 4];
commands['~nban'].regex = /^~nban ([\d\.^ ]+)?([^ ]+) (.+)$/; commands['~nban'].regex = /^~nban ([\d\.^ ]+)?([^ ]+) (.+)$/;
commands['~quiet'].regex = /^~quiet ([\d\.^ ]+)?([^ ]+)$/; commands['~quiet'].regex = /^~quiet ([^ ]+)?([^ ]+)$/;
return commands; return commands;
}; };