mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-03 15:07:42 +02:00
Fix
This commit is contained in:
@@ -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}**.
|
||||
|
||||
Reference in New Issue
Block a user