Fix dropnumber command
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Ethan Lane 2023-12-09 17:06:55 +00:00
parent be7a7c4ca4
commit 27e32046fd

View file

@ -31,20 +31,18 @@ export default class Dropnumber extends Command {
return; return;
} }
const series = CoreClient.Cards.find(x => x.cards.find(y => y.id == cardNumber.toString())); const card = CoreClient.Cards
.flatMap(x => x.cards)
if (!series) { .find(x => x.id == cardNumber.value);
await interaction.reply('Card not found');
return;
}
const card = series.cards.find(x => x.id == cardNumber.toString());
if (!card) { if (!card) {
await interaction.reply('Card not found'); await interaction.reply('Card not found');
return; return;
} }
const series = CoreClient.Cards
.find(x => x.cards.includes(card))!;
let image: Buffer; let image: Buffer;
const imageFileName = card.path.split("/").pop()!; const imageFileName = card.path.split("/").pop()!;