From 63e7d8c040e7c52bb0dd4dd0ddf25771eb41115e Mon Sep 17 00:00:00 2001 From: Ayrox Date: Sun, 2 Jan 2022 18:09:21 +0100 Subject: [PATCH] fix /blackjack --- src/Commands/Games/blackjack.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/Commands/Games/blackjack.js b/src/Commands/Games/blackjack.js index 9a11d25..c4ab7c1 100644 --- a/src/Commands/Games/blackjack.js +++ b/src/Commands/Games/blackjack.js @@ -101,7 +101,7 @@ module.exports = { - blackjackEmbed.description = "\n**[Voir les Règles](https://fr.wikipedia.org/wiki/Blackjack_(jeu)**" + blackjackEmbed.description = "\n**[Voir les Règles](https://fr.wikipedia.org/wiki/Blackjack_(jeu))**" blackjackEmbed.addFields( { name: "- Votre Main -", value: "-", inline: true }, { name: `- ( ${Score(playerHand)} ) - SCORE - ( ${Score(botHand)} ) -`, value: "--------------------------", inline: true }, @@ -123,7 +123,7 @@ module.exports = { blackjackCollector.on('collect', async (btn) => { - await btn.deferUpdate() + if (btn.user.id !== message.member.id) { return await btn.reply({ @@ -132,6 +132,8 @@ module.exports = { }) } + await btn.deferUpdate() + if (btn.customId === 'BJ-abandon') { blackjackCollector.stop("abandon") @@ -247,6 +249,7 @@ module.exports = { await blackjack.edit( { embeds: [errorEmbed().setDescription("Vous n'avez pas répondu dans le temps imparti")], + components: [], } ) break; @@ -263,6 +266,7 @@ module.exports = { await blackjack.edit( { embeds: [errorEmbed().setDescription("Vous n'avez pas répondu dans le temps imparti")], + components: [], } ) }