fix: give ample duplicates of ship decos with unlockAllShipDecorations #1651

Merged
Sainan merged 2 commits from many-decos into main 2025-04-16 06:28:53 -07:00

View File

@ -149,7 +149,7 @@ export const getInventoryResponse = async (
inventoryResponse.ShipDecorations = [];
for (const [uniqueName, item] of Object.entries(ExportResources)) {
if (item.productCategory == "ShipDecorations") {
inventoryResponse.ShipDecorations.push({ ItemType: uniqueName, ItemCount: 1 });
inventoryResponse.ShipDecorations.push({ ItemType: uniqueName, ItemCount: 999_999 });
}
}
}