3
0
mirror of https://github.com/reality/dbot.git synced 2024-11-27 14:29:29 +01:00
This commit is contained in:
reality 2015-04-25 11:03:26 +00:00
parent be71f31c07
commit c0e8290bba

View File

@ -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) {