forked from GitHub/dbot
Fixed mis-variable-naming in ~qcount
This commit is contained in:
parent
522a1d9f69
commit
3c5036fef4
@ -17,7 +17,7 @@ var quotes = function(dbot) {
|
|||||||
'~qcount': function(data, params) {
|
'~qcount': function(data, params) {
|
||||||
var q = data.message.valMatch(/^~qcount ([\d\w\s]*)/, 2);
|
var q = data.message.valMatch(/^~qcount ([\d\w\s]*)/, 2);
|
||||||
if(q) {
|
if(q) {
|
||||||
key = key[1].trim().toLowerCase();
|
key = q[1].trim().toLowerCase();
|
||||||
if(quotes.hasOwnProperty(key)) {
|
if(quotes.hasOwnProperty(key)) {
|
||||||
dbot.say(data.channel, key + ' has ' + quotes[key].length + ' quotes.');
|
dbot.say(data.channel, key + ' has ' + quotes[key].length + ' quotes.');
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user