3
0
mirror of https://github.com/reality/dbot.git synced 2024-11-23 12:29:26 +01:00

add content kills

This commit is contained in:
reality 2018-02-16 14:29:17 +00:00
parent 56d12bd649
commit 709cd085a9

View File

@ -14,12 +14,13 @@ var kill_namespam = function(dbot) {
var message;
// Check distinctive spam content match
if(_.any(this.config.advert_content, function(spam) { return event.message.match(spam); })) {
if(_.any(this.config.advert_content, function(spam) { return event.message.indexOf(spam) != -1; })) {
message = dbot.t('spamcont_act', {
'user': event.user,
'channel': event.channel,
'action': this.config.action
});
naughty = true;
}
// Name highlight spam
@ -30,6 +31,7 @@ var kill_namespam = function(dbot) {
'action': this.config.action,
'sensitivity': this.config.sensitivity
});
naughty = true;
}
if(naughty) {