forked from GitHub/dbot
fix up ignore [#131]
This commit is contained in:
parent
7a6cab841e
commit
f532aee4ab
@ -72,22 +72,20 @@ var ignore = function(dbot) {
|
||||
}
|
||||
};
|
||||
|
||||
return {
|
||||
'name': 'ignore',
|
||||
'ignorable': false,
|
||||
'commands': commands,
|
||||
this.name = 'ignore';
|
||||
this.ignorable = false;
|
||||
this.commands = commands;
|
||||
|
||||
'onLoad': function() {
|
||||
dbot.instance.clearIgnores();
|
||||
_.each(dbot.db.ignores, function(ignores, user) {
|
||||
_.each(ignores, function(ignore) {
|
||||
dbot.instance.ignoreTag(user, ignore);
|
||||
}, this);
|
||||
this.onLoad = function() {
|
||||
dbot.instance.clearIgnores();
|
||||
_.each(dbot.db.ignores, function(ignores, user) {
|
||||
_.each(ignores, function(ignore) {
|
||||
dbot.instance.ignoreTag(user, ignore);
|
||||
}, this);
|
||||
}
|
||||
}, this);
|
||||
};
|
||||
};
|
||||
|
||||
exports.fetch = function(dbot) {
|
||||
return ignore(dbot);
|
||||
return new ignore(dbot);
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user