From 02201de6cd2a94316dbbd0ff12575b5c09218c53 Mon Sep 17 00:00:00 2001 From: Virx Date: Fri, 1 May 2026 17:11:19 -0400 Subject: [PATCH] Skip Body rename in item de-duping --- frontend/src/components/LoadoutEditor/items.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/LoadoutEditor/items.ts b/frontend/src/components/LoadoutEditor/items.ts index b1298c0..980aa98 100644 --- a/frontend/src/components/LoadoutEditor/items.ts +++ b/frontend/src/components/LoadoutEditor/items.ts @@ -34,7 +34,7 @@ function renameItem(item: CsvItem, category: string) { } // this is "Black Market Drop", "Exotic Drop" etc that have the category "Body" for some reason -const EXCLUDE_ITEMS = [5364, 5365, 5366, 5367, 5368, 5369]; +const EXCLUDE_ITEMS = [3315, 3316, 3138, 5364, 5365, 5366, 5367, 5368, 5369]; export async function getAndParseItems() { const resp = await fetch(ItemsCsv); @@ -74,7 +74,7 @@ export async function getAndParseItems() { item.name = renameItem(item, category); // rename the original item as well - if (needsHandling) { + if (needsHandling && category !== "Body") { const item = items[category][idx]; nameCounts[item.name] = [false, idx]; item.name = renameItem(item, category);