mirror of
https://github.com/reality/dbot.git
synced 2024-11-27 14:29:29 +01:00
meh
This commit is contained in:
parent
be71f31c07
commit
c0e8290bba
@ -95,17 +95,16 @@ var commands = function(dbot) {
|
||||
report = 0,
|
||||
items = {};
|
||||
aliases.push(user.primaryNick);
|
||||
console.log(aliases);
|
||||
|
||||
dbot.modules.report.db.search('notifies', {
|
||||
'server': event.server
|
||||
}, function(notify) {
|
||||
_.each(aliases, function(alias) {
|
||||
if(notify.message.match('banned ' + alias + ' ') ||
|
||||
notify.message.match(' ' + alias + ' has been unbanned') ||
|
||||
notify.message.match('issued a warning to ' + alias + ' ') ||
|
||||
notify.message.match('has quieted ' + alias + ' ') ||
|
||||
notify.message.match('has reported ' + alias + ' ')) {
|
||||
if(notify.message.indexOf('banned ' + alias + ' ') != -1 ||
|
||||
notify.message.indexOf(' ' + alias + ' has been unbanned') != -1 ||
|
||||
notify.message.indexOf('issued a warning to ' + alias + ' ') != -1 ||
|
||||
notify.message.indexOf('has quieted ' + alias + ' ') != -1 ||
|
||||
notify.message.indexOf('has reported ' + alias + ' ') != -1) {
|
||||
if(notify.type == 'ban') {
|
||||
ban++;
|
||||
if(notify.time > latest_ban.time) {
|
||||
|
Loading…
Reference in New Issue
Block a user