This commit is contained in:
Dragon Fire
2021-04-11 14:25:42 -04:00
parent d785a38a05
commit 3cf5479143
+1 -1
View File
@@ -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}**.