diff --git a/commands/fun/s.js b/commands/secret/s.js similarity index 95% rename from commands/fun/s.js rename to commands/secret/s.js index 8ea62a4..f075bc5 100644 --- a/commands/fun/s.js +++ b/commands/secret/s.js @@ -8,7 +8,7 @@ export default { option.setName('something') .setDescription('🤫') .setRequired(true)), - category: 'fun', + category: 'secret', async execute(interaction, args) { const command = args[0]; diff --git a/index.js b/index.js index dc2e3a7..c57f32a 100644 --- a/index.js +++ b/index.js @@ -18,6 +18,7 @@ const client = new Client({ // Load commands client.commands = new Collection(); await loadCommandFromDir('fun'); +await loadCommandFromDir('secret'); await loadCommandFromDir('utility'); await loadCommandFromDir('admin'); await loadCommandFromDir('owner');