3
0
mirror of https://github.com/reality/dbot.git synced 2024-11-24 04:49:25 +01:00

~link to use event input not params [Fix #273]

This commit is contained in:
Sam Nicholls 2013-02-15 17:28:54 +00:00
parent f7f9037e44
commit 66611c92a3

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';