forked from GitHub/dbot
ignorableModules now built with filter, module.toString returns name
This commit is contained in:
parent
85fc4d6e6f
commit
078c4cf3e3
@ -7,11 +7,9 @@
|
||||
var ignore = function(dbot) {
|
||||
var commands = {
|
||||
'~ignore': function(event) {
|
||||
var ignorableModules = [];
|
||||
|
||||
dbot.modules.each(function(module) {
|
||||
var ignorableModules = dbot.modules.filter(function(module) {
|
||||
if(module.ignorable != null && module.ignorable == true) {
|
||||
ignorableModules.push(module.name);
|
||||
return true;
|
||||
}
|
||||
});
|
||||
var module = event.params[1];
|
||||
|
Loading…
Reference in New Issue
Block a user