1 |
import { CommandInteraction, Interaction, Message } from 'discord.js'; |
import { CommandInteraction, Message } from 'discord.js'; |
2 |
import BaseCommand from '../../utils/structures/BaseCommand'; |
import BaseCommand from '../../utils/structures/BaseCommand'; |
3 |
import DiscordClient from '../../client/Client'; |
import DiscordClient from '../../client/Client'; |
4 |
import Help from '../../utils/Help'; |
import Help from '../../utils/Help'; |
31 |
title: 'Help', |
title: 'Help', |
32 |
description: renderCommandList() |
description: renderCommandList() |
33 |
}) |
}) |
|
// .setDescription("The command list.\n\n`<...>` means required argument, `[...]` means optional argument.\n\nRun `" + client.config.get('prefix') + "help <commandName>` for more information about a specific command.\n" + await this.render()) |
|
|
// .setTitle('Help') |
|
34 |
], |
], |
35 |
}); |
}); |
36 |
|
|