make output a bit more verbose

increase verbosity in case i made an oopsie that isn't returning false
This commit is contained in:
Darien Rousseau 2023-08-14 19:39:02 -06:00 committed by GitHub
parent 214d9b06a4
commit c7ec8c6a25
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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
}]
});