From c7ec8c6a25f3865397ef39262182d3b2c72baa56 Mon Sep 17 00:00:00 2001 From: Darien Rousseau <45698803+not-pyroman@users.noreply.github.com> Date: Mon, 14 Aug 2023 19:39:02 -0600 Subject: [PATCH] make output a bit more verbose increase verbosity in case i made an oopsie that isn't returning false --- index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index 00c240d..06138ff 100644 --- a/index.js +++ b/index.js @@ -606,14 +606,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"}** ${Math.abs(bet)} coins!`, + description: `You flipped ${config.games.coinflip.heads} and **${outcome ? "won" : "lost"}** ${Math.abs(bet)} coins! You Chose: ${side}.`, 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"}** ${Math.abs(bet)} coins!`, + description: `You flipped ${config.games.coinflip.tails} and **${outcome ? "won" : "lost"}** ${Math.abs(bet)} coins! You Chose: ${side}.`, color: outcome ? 0x00ff00 : 0xff0000 }] });