diff --git a/modules/functions.js b/modules/functions.js index 4881d32..752efe9 100644 --- a/modules/functions.js +++ b/modules/functions.js @@ -87,8 +87,8 @@ module.exports = (client) => { if (command.shutdown) { await command.shutdown(client); } - const mod = require.cache[require.resolve(`../${command.help.category}/${command.help.name}`)]; - delete require.cache[require.resolve(`../${command.help.category}/${command.help.name}.js`)]; + const mod = require.cache[require.resolve(`../commands/${command.help.category}/${command.help.name}`)]; + delete require.cache[require.resolve(`../commands/${command.help.category}/${command.help.name}.js`)]; for (let i = 0; i < mod.parent.children.length; i++) { if (mod.parent.children[i] === mod) { mod.parent.children.splice(i, 1);