This commit is contained in:
Christopher Cookman 2023-08-13 21:54:49 -06:00
parent d14b7ee892
commit f2135ffc25
Signed by: ChrisChrome
GPG key ID: A023A26E42C33A42

View file

@ -528,7 +528,7 @@ client.on("interactionCreate", async interaction => {
return await interaction.editReply({ return await interaction.editReply({
embeds: [{ embeds: [{
title: "Triple!", title: "Triple!",
description: `${slotResults.spinResult[0]}${slotResults.spinResult[1]}${slotResults.spinResult[2]}\nYou won ${difference} coins!`, description: `${slotResults.spinResult[0]}${slotResults.spinResult[1]}${slotResults.spinResult[2]}\nYou won ${difference + 3} coins! (You get your play fee back)`,
color: 0x00ffff color: 0x00ffff
}] }]
}); });
@ -536,7 +536,7 @@ client.on("interactionCreate", async interaction => {
await interaction.editReply({ await interaction.editReply({
embeds: [{ embeds: [{
title: "Slots", title: "Slots",
description: `${slotResults.spinResult[0]}${slotResults.spinResult[1]}${slotResults.spinResult[2]}\nYou won ${difference} coins!`, description: `${slotResults.spinResult[0]}${slotResults.spinResult[1]}${slotResults.spinResult[2]}\nYou won ${difference + 3} coins! (You get your play fee back)`,
color: 0x00ff00 color: 0x00ff00
}] }]
}); });