3
0
mirror of https://github.com/reality/dbot.git synced 2024-11-23 20:39:25 +01:00

Merge pull request #285 from SamStudio8/master

~link to use event input not params [Fix #273]
This commit is contained in:
Luke Slater 2013-02-15 09:57:47 -08:00
commit 5f8bde0db9

View File

@ -192,7 +192,7 @@ var commands = function(dbot) {
},
'~link': function(event) {
var key = event.params[1].trim().toLowerCase();
var key = event.input[1].toLowerCase();
if(_.has(quotes, key)) {
event.reply(dbot.t('quote_link', {
'category': key,
@ -214,6 +214,7 @@ var commands = function(dbot) {
commands['~rm'].regex = [/^~rm ([\d\w\s-]+?)[ ]?=[ ]?(.+)$/, 3];
commands['~rmlast'].regex = [/^~rmlast ([\d\w\s-]*)/, 2];
commands['~qadd'].regex = [/^~qadd ([\d\w\s-]+?)[ ]?=[ ]?(.+)$/, 3];
commands['~link'].regex = [/^~link ([\d\w\s-]*)/, 2];
commands['~rmconfirm'].access = 'moderator';
commands['~rmdeny'].access = 'moderator';