forked from GitHub/dbot
Fix [#442]
This commit is contained in:
parent
8f9b44d4f0
commit
84bd092bae
@ -3,5 +3,6 @@
|
||||
"dependencies": [ "command", "users" ],
|
||||
"rmLimit": 10,
|
||||
"ignorable": true,
|
||||
"quotesOnJoin": false,
|
||||
"help": "http://github.com/reality/depressionbot/blob/master/modules/quotes/README.md"
|
||||
}
|
||||
|
@ -114,11 +114,13 @@ var quotes = function(dbot) {
|
||||
dbot.instance.emit(event);
|
||||
}
|
||||
} else if(event.action == 'JOIN') {
|
||||
if(this.config.quotesOnJoin == true) {
|
||||
var userQuote = this.api.getQuote(event, event.user)
|
||||
if(userQuote) {
|
||||
event.reply(event.user + ': ' + this.api.getQuote(event, event.user));
|
||||
}
|
||||
}
|
||||
}
|
||||
}.bind(this);
|
||||
this.on = ['PRIVMSG', 'JOIN'];
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user