From 8fba3325239795d2630e4f0e2b978875daf5da44 Mon Sep 17 00:00:00 2001 From: clienterr Date: Fri, 31 May 2024 19:00:25 +0545 Subject: [PATCH] Update coinflip.js --- src/commands/economy/coinflip.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/economy/coinflip.js b/src/commands/economy/coinflip.js index 6725b01..ace21c2 100644 --- a/src/commands/economy/coinflip.js +++ b/src/commands/economy/coinflip.js @@ -43,7 +43,7 @@ export default { const embed = new EmbedBuilder().setDescription('The bet amount cannot be negative.'); return interaction.reply({ embeds: [embed], ephemeral: true }); } - if (gambleAmountet > 15) { + if (gambleAmount > 15) { const rembed = new EmbedBuilder().setDescription('The maximum bet amount is 10 coins.'); return interaction.reply({ embeds: [rembed], ephemeral: true }); }