fix: give ample duplicates of ship decos with unlockAllShipDecorations
All checks were successful
Build / build (push) Successful in 45s
Build / build (pull_request) Successful in 1m32s

This commit is contained in:
Sainan 2025-04-15 19:12:55 +02:00
parent 28d7ca8ca0
commit 38a610be81

View File

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