forked from Supositware/Haha-Yes
Secret category
This commit is contained in:
parent
18607ba90e
commit
1d9bcc9597
2 changed files with 2 additions and 1 deletions
|
@ -8,7 +8,7 @@ export default {
|
||||||
option.setName('something')
|
option.setName('something')
|
||||||
.setDescription('🤫')
|
.setDescription('🤫')
|
||||||
.setRequired(true)),
|
.setRequired(true)),
|
||||||
category: 'fun',
|
category: 'secret',
|
||||||
async execute(interaction, args) {
|
async execute(interaction, args) {
|
||||||
const command = args[0];
|
const command = args[0];
|
||||||
|
|
1
index.js
1
index.js
|
@ -18,6 +18,7 @@ const client = new Client({
|
||||||
// Load commands
|
// Load commands
|
||||||
client.commands = new Collection();
|
client.commands = new Collection();
|
||||||
await loadCommandFromDir('fun');
|
await loadCommandFromDir('fun');
|
||||||
|
await loadCommandFromDir('secret');
|
||||||
await loadCommandFromDir('utility');
|
await loadCommandFromDir('utility');
|
||||||
await loadCommandFromDir('admin');
|
await loadCommandFromDir('admin');
|
||||||
await loadCommandFromDir('owner');
|
await loadCommandFromDir('owner');
|
||||||
|
|
Loading…
Reference in a new issue