From e4e819a89187fa9bb8c976840274a17f5b33720b Mon Sep 17 00:00:00 2001 From: Adam Iannazzone <46025473+jiannazzone@users.noreply.github.com> Date: Sat, 7 Feb 2026 16:02:58 -0500 Subject: [PATCH] Update role terminology from "Donator" to "Supporter" in claim donation command --- src/commands/claim-donation.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/commands/claim-donation.js b/src/commands/claim-donation.js index 6a3d5e9..c398a24 100644 --- a/src/commands/claim-donation.js +++ b/src/commands/claim-donation.js @@ -12,7 +12,7 @@ const EMAIL_INPUT_ID = 'email-input'; const command = new SlashCommandBuilder() .setName('claim-donation') - .setDescription('Claim your Donator role by verifying your OpenCollective donation'); + .setDescription('Claim your Supporter role by verifying your OpenCollective donation'); async function handleCommand(interaction) { const modal = new ModalBuilder() @@ -37,7 +37,7 @@ async function handleModal(interaction) { if (member.roles.cache.has(donatorRoleId)) { await interaction.reply({ - content: 'You already have the Donator role! Thank you for your support.', + content: 'You already have the Supporter role! Thank you for your support.', flags: 64, }); return; @@ -54,7 +54,7 @@ async function handleModal(interaction) { await member.roles.add(donatorRoleId); await interaction.editReply({ content: - 'Donation verified! You have been given the **Donator** role. Thank you for supporting RetroDECK!', + 'Donation verified! You have been given the **Supporter** role. Thank you for supporting RetroDECK!', }); } else { await interaction.editReply({