diff --git a/run.js b/run.js index fe245a4..71a13da 100644 --- a/run.js +++ b/run.js @@ -30,11 +30,13 @@ DBot.prototype.save = function() { }; DBot.prototype.reloadModules = function() { - this.modules.each(function(module) { - if(module.onDestroy) { - module.onDestroy(); - } - }); + if(this.modules) { + this.modules.each(function(module) { + if(module.onDestroy) { + module.onDestroy(); + } + }); + } this.rawModules = []; this.modules = [];