diff --git a/commands/games-sp/blackjack.js b/commands/games-sp/blackjack.js index 6dfc7663..ddfdbe3d 100644 --- a/commands/games-sp/blackjack.js +++ b/commands/games-sp/blackjack.js @@ -114,7 +114,7 @@ module.exports = class BlackjackCommand extends Command { } draw(channel, hand) { - const { deck } = this.client.games.get(channel.id).data; + const deck = this.client.games.get(channel.id).data; const card = deck.draw(); hand.push(card); return card;