diff --git a/commands/honors/honors.js b/commands/honors/honors.js index 7b297db..3573da9 100644 --- a/commands/honors/honors.js +++ b/commands/honors/honors.js @@ -171,21 +171,24 @@ async function honorMenu(interaction) { const row = new ActionRowBuilder() .addComponents( new ButtonBuilder() - .setLabel('Honor') .setEmoji(`<:honorhigh:748176295535443968>`) .setCustomId('honor_menu_honor') - .setStyle(ButtonStyle.Primary) + .setStyle(ButtonStyle.Success) ) .addComponents( new ButtonBuilder() - .setLabel('Dishonor') .setEmoji(`<:honorlow:748176295132790786>`) .setCustomId('honor_menu_dishonor') - .setStyle(ButtonStyle.Primary) + .setStyle(ButtonStyle.Danger) + ) + .addComponents( + new ButtonBuilder() + .setEmoji(`❌`) + .setCustomId('abort') + .setStyle(ButtonStyle.Secondary) ) .addComponents( new ButtonBuilder() - .setLabel('History') .setEmoji('📜') .setCustomId('honor_menu_history') .setStyle(ButtonStyle.Secondary)