diff --git a/index.js b/index.js index a0b8ea4..ed4fb25 100644 --- a/index.js +++ b/index.js @@ -653,14 +653,14 @@ client.on("interactionCreate", async interaction => { if (coin == "heads") return interaction.reply({ embeds: [{ title: "Coinflip", - description: `You flipped ${config.games.coinflip.heads} and **${outcome ? "won" : "lost"}** ${poor ? Math.abs(points) : Math.abs(bet)} coins!`, // sanity check + description: `You flipped ${config.games.coinflip.heads} and **${outcome ? "won" : "lost"}** ${Math.abs(bet)} coins!`, // sanity check color: outcome ? 0x00ff00 : 0xff0000 }] }); else if (coin == "tails") return interaction.reply({ embeds: [{ title: "Coinflip", - description: `You flipped ${config.games.coinflip.tails} and **${outcome ? "won" : "lost"}** ${poor ? Math.abs(points) : Math.abs(bet)} coins!`, + description: `You flipped ${config.games.coinflip.tails} and **${outcome ? "won" : "lost"}** ${Math.abs(bet)} coins!`, color: outcome ? 0x00ff00 : 0xff0000 }] });