From 6d8d8402a564c61dcf43d79a7805f0176f43c17d Mon Sep 17 00:00:00 2001 From: admin_rb Date: Mon, 6 Apr 2026 17:22:07 +0200 Subject: [PATCH] fixed honors --- commands/honors/honors.js | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) 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)