Update the series list command to say cards instead of x (#296)
- Update the /series list command so that it says "cards" instead if "x", for example `39 cards` #289 Reviewed-on: #296 Reviewed-by: VylpesTester <tester@vylpes.com> Co-authored-by: Ethan Lane <ethan@vylpes.com> Co-committed-by: Ethan Lane <ethan@vylpes.com>
This commit is contained in:
parent
acfdcb17f2
commit
29bb22a819
1 changed files with 1 additions and 1 deletions
|
@ -78,7 +78,7 @@ export default class SeriesHelper {
|
||||||
const seriesOnPage = series.splice(page * itemsPerPage, itemsPerPage);
|
const seriesOnPage = series.splice(page * itemsPerPage, itemsPerPage);
|
||||||
|
|
||||||
const description = seriesOnPage
|
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");
|
.join("\n");
|
||||||
|
|
||||||
const embed = new EmbedBuilder()
|
const embed = new EmbedBuilder()
|
||||||
|
|
Loading…
Reference in a new issue