Clear out arrays before caching.

This commit is contained in:
chris062689 2017-03-30 21:18:23 -04:00
parent cd6211fb7d
commit 2a4a0d689f
1 changed files with 2 additions and 0 deletions

View File

@ -90,6 +90,7 @@ client.on('message', message => {
});
// Cache all command modules.
cachedModules = [];
require("fs").readdirSync('./commands/').forEach(function(file) {
// Load the module if it's a script.
if (path.extname(file) == '.js') {
@ -99,6 +100,7 @@ require("fs").readdirSync('./commands/').forEach(function(file) {
});
// Cache all triggers.
cachedTriggers = [];
require("fs").readdirSync('./triggers/').forEach(function(file) {
// Load the trigger if it's a script.
if (path.extname(file) == '.js') {