From 3cf547914389db06ff7bb20f6ec59c822a0dcc2c Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sun, 11 Apr 2021 14:25:42 -0400 Subject: [PATCH] Fix --- commands/games-sp/tarot.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/games-sp/tarot.js b/commands/games-sp/tarot.js index 05e5524e..e4e2a068 100644 --- a/commands/games-sp/tarot.js +++ b/commands/games-sp/tarot.js @@ -31,7 +31,7 @@ module.exports = class TarotCommand extends Command { try { const deck = new TarotDeck(); const cards = deck.draw(3); - for (let i = 0; i > cards.length; i++) { + for (let i = 0; i < cards.length; i++) { const card = cards[i]; await msg.say(stripIndents` Your ${displayNums[i]} card is **${card.name}**.