Merge pull request #9 from chris062689/master

Reverting change to how we cache triggers due to foreach loop.
This commit is contained in:
Christopher J. Gilbert 2017-03-30 21:35:33 -04:00 committed by GitHub
commit dc29c03563
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ require("fs").readdirSync('./triggers/').forEach(function(file) {
// Load the trigger if it's a script.
if (path.extname(file) == '.js') {
logger.info(`Loaded trigger: ${file}`);
cachedTriggers[file] = require(`./triggers/${file}`);
cachedTriggers.push(require(`./triggers/${file}`));
}
});