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 {
|
this.name = 'ignore';
|
||||||
'name': 'ignore',
|
this.ignorable = false;
|
||||||
'ignorable': false,
|
this.commands = commands;
|
||||||
'commands': commands,
|
|
||||||
|
|
||||||
'onLoad': function() {
|
this.onLoad = function() {
|
||||||
dbot.instance.clearIgnores();
|
dbot.instance.clearIgnores();
|
||||||
_.each(dbot.db.ignores, function(ignores, user) {
|
_.each(dbot.db.ignores, function(ignores, user) {
|
||||||
_.each(ignores, function(ignore) {
|
_.each(ignores, function(ignore) {
|
||||||
dbot.instance.ignoreTag(user, ignore);
|
dbot.instance.ignoreTag(user, ignore);
|
||||||
}, this);
|
|
||||||
}, this);
|
}, this);
|
||||||
}
|
}, this);
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
exports.fetch = function(dbot) {
|
exports.fetch = function(dbot) {
|
||||||
return ignore(dbot);
|
return new ignore(dbot);
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user