- Moved general commands to the description for higher character limit
This commit is contained in:
Logan Cusano
2023-07-13 21:39:55 -04:00
parent eec80f7239
commit 60b6eb7cda

View File

@@ -49,9 +49,9 @@ module.exports = {
const helpEmbed = new EmmeliaEmbedBuilder() const helpEmbed = new EmmeliaEmbedBuilder()
.setColor(0x0099FF) .setColor(0x0099FF)
.setTitle(`Help`) .setTitle(`Help`)
.addFields( .setDescription(`**General Commands**\n\n${generalCommandText}`)
{ name: 'General Commands', value: `${generalCommandText}` }, .addFields(
{ name: 'Paid Commands', value: `${paidCommandText}` } { name: 'Paid Commands', value: `${paidCommandText}` }
) )
await interaction.reply({ embeds: [helpEmbed], ephemeral: true }); await interaction.reply({ embeds: [helpEmbed], ephemeral: true });