Update the series list command to say cards instead of x #296

Merged
Vylpes merged 1 commit from feature/289-series-list-count-2 into develop 2024-07-12 16:09:26 +01:00

View file

@ -78,7 +78,7 @@ export default class SeriesHelper {
const seriesOnPage = series.splice(page * itemsPerPage, itemsPerPage);
const description = seriesOnPage
.map(x => `[${x.id}] ${x.name} (x${x.cards.length})`)
.map(x => `[${x.id}] ${x.name} (${x.cards.length} cards)`)
.join("\n");
const embed = new EmbedBuilder()