fix: give ample duplicates of ship decos with unlockAllShipDecorations (#1651)
Some checks failed
Build Docker image / docker (push) Has been cancelled
Build / build (push) Has been cancelled

Closes #1644

Reviewed-on: #1651
Co-authored-by: Sainan <63328889+Sainan@users.noreply.github.com>
Co-committed-by: Sainan <63328889+Sainan@users.noreply.github.com>
This commit is contained in:
Sainan 2025-04-16 06:28:52 -07:00 committed by Sainan
parent a738dbfa9a
commit 38502f10bf

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: 999_999 });
} }
} }
} }