Merge pull request #3286 from phyzical/bugfix/fix-max-warehouse-bulk-purchase

incorrect ternary with bulk purchase
This commit is contained in:
hydroflame
2022-03-30 11:34:48 -04:00
committed by GitHub

View File

@@ -258,7 +258,7 @@ export function BulkPurchase(corp: ICorporation, warehouse: Warehouse, material:
if (isNaN(amt) || amt < 0) {
throw new Error(`Invalid input amount`);
}
if (amt * matSize > maxAmount) {
if (amt * matSize <= maxAmount) {
throw new Error(`You do not have enough warehouse size to fit this purchase`);
}
const cost = amt * material.bCost;