Make the rarity text on the series embed lower case
All checks were successful
Test / build (push) Successful in 9s

To be more consistent with the inventory command

#348
This commit is contained in:
Ethan Lane 2024-08-29 18:53:09 +01:00
parent 6025e2b269
commit a10eaf7d75

View file

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