diff --git a/src/Corporation/Actions.ts b/src/Corporation/Actions.ts index 73bedfd95..7cb1831fe 100644 --- a/src/Corporation/Actions.ts +++ b/src/Corporation/Actions.ts @@ -312,6 +312,7 @@ export function BulkPurchase( if (corp.funds >= cost) { corp.funds = corp.funds - cost; material.stored += amt; + warehouse.sizeUsed = warehouse.sizeUsed + amt * matSize; } else { throw new Error(`You cannot afford this purchase.`); }