use a prettier number
All checks were successful
Build / build (pull_request) Successful in 1m24s
Build / build (push) Successful in 1m28s

This commit is contained in:
Sainan 2025-04-16 00:39:13 +02:00
parent 38a610be81
commit 8d9bab8f69

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: 0x40000000 });
inventoryResponse.ShipDecorations.push({ ItemType: uniqueName, ItemCount: 999_999 });
}
}
}