diff --git a/src/Corporation/Industry.ts b/src/Corporation/Industry.ts index b9ebdf08c..6be0d0da6 100644 --- a/src/Corporation/Industry.ts +++ b/src/Corporation/Industry.ts @@ -564,7 +564,7 @@ export class Industry implements IIndustry { buyAmt = mat.buy * CorporationConstants.SecsPerMarketCycle * marketCycles; if (matName == "RealEstate") { - maxAmt = buyAmt; + maxAmt = corporation.funds.toNumber() / mat.bCost; } else { maxAmt = Math.floor((warehouse.size - warehouse.sizeUsed) / MaterialSizes[matName]); }