diff --git a/src/client/datastore.js b/src/client/datastore.js index fb5ee65..dafd80a 100644 --- a/src/client/datastore.js +++ b/src/client/datastore.js @@ -16,7 +16,7 @@ module.exports = class { const dataFiles = fs.readdirSync(path.join(path.dirname(__dirname), '../datastore')).filter(f => f.endsWith('.json')); for (const file of dataFiles) { try { - const json = require(`../../../datastore/${file}`); + const json = require(`../../datastore/${file}`); this.map.set(json.guild.id, json); //console.log('[LOADED] ' + file + " (" + json.guild.id + ")"); //console.log(JSON.stringify(json, null, 4));