3
0
mirror of https://github.com/reality/dbot.git synced 2024-11-27 22:39:26 +01:00
This commit is contained in:
reality 2013-10-20 19:12:07 +00:00
parent d714b2c0be
commit ead2d21a35

View File

@ -229,9 +229,9 @@ var commands = function(dbot) {
} }
}; };
commands['~wordusers'].regex = [/^~wordusers ([\d\w[\]{}^|\\`_-]+?)/, 2]; commands['~wordusers'].regex = [/^~wordusers ([\d\w[\]{}^|\\<>`_-]+?)/, 2];
commands['~word'].regex = [/^~word ([\d\w[\]{}^|\\`_-]+?)/, 2]; commands['~word'].regex = [/^~word ([\d\w[\]{}^|\\<>`_-]+?)/, 2];
commands['~trackword'].regex = [/^~trackword ([\d\w[\]{}^|\\`_-]+?)/, 2]; commands['~trackword'].regex = [/^~trackword ([\d\w[\]{}^|\\<>`_-]+?)/, 2];
commands['~trackword'].access = 'power_user'; commands['~trackword'].access = 'power_user';
return commands; return commands;
}; };