From da5a269e4da1e02a47bbb821a340ac6c394d7662 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sat, 11 Apr 2020 09:40:55 -0400 Subject: [PATCH] Fix --- commands/games-sp/blackjack.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/games-sp/blackjack.js b/commands/games-sp/blackjack.js index 81013f61..04ea2826 100644 --- a/commands/games-sp/blackjack.js +++ b/commands/games-sp/blackjack.js @@ -64,7 +64,7 @@ module.exports = class BlackjackCommand extends Command { _Hit?_ `); - const hit = await verify(msg.channel, msg.author, { otherYes: hitWords, otherNo: standWords }); + const hit = await verify(msg.channel, msg.author, { extraYes: hitWords, extraNo: standWords }); if (hit) { const card = this.draw(msg.channel, playerHand); const total = this.calculate(playerHand);