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:
parent
56d12bd649
commit
709cd085a9
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user