Skip to content

Commit

Permalink
Mark more components as "generic"
Browse files Browse the repository at this point in the history
  • Loading branch information
DaPigGuy committed Oct 27, 2024
1 parent f8ed8f7 commit 53042a4
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion updater/update_items.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,14 @@ class ItemUpdater {

if (
ingredientRawName.includes("WeaponParts") ||
ingredientRawName.includes("WarframeRecipes")
ingredientRawName.includes("WarframeRecipes") ||
ingredientRawName.includes("NecromechPart") ||

// WFCD warframe-items does not include a hash for these despite being unique from other generic component images
ingredientRawName.includes("DamagedMechPart") ||
ingredientName.startsWith("Cortege") ||
ingredientName.startsWith("Morgha") ||
ingredientName.startsWith("BardQuestSequencerPart")
) {
ingredientData.generic = true;

Expand Down

0 comments on commit 53042a4

Please sign in to comment.