This commit is contained in:
Dragon Fire
2020-04-11 09:40:55 -04:00
parent 2159d3722d
commit da5a269e4d
+1 -1
View File
@@ -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);