renamed map object

This commit is contained in:
Polaris
2024-08-19 19:14:47 -04:00
parent b303fbcc9a
commit 552f737650
5 changed files with 14 additions and 11 deletions

View File

@ -93,9 +93,9 @@ export async function getNamePlates() {
new Map(
AllNameplates.filter((matchingNamePlateIds) =>
unlockedNamePlates.includes(matchingNamePlateIds.id),
).map((unlockedNamePlates) => [
unlockedNamePlates.id,
unlockedNamePlates,
).map((unlockedNamePlateIds) => [
unlockedNamePlateIds.id,
unlockedNamePlateIds,
]),
).values(),
);