mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-24 08:33:50 +01:00
Impossible to buy real estate with negative money
This commit is contained in:
parent
8e07cc999d
commit
1335ca8e01
@ -564,7 +564,7 @@ export class Industry implements IIndustry {
|
|||||||
buyAmt = mat.buy * CorporationConstants.SecsPerMarketCycle * marketCycles;
|
buyAmt = mat.buy * CorporationConstants.SecsPerMarketCycle * marketCycles;
|
||||||
|
|
||||||
if (matName == "RealEstate") {
|
if (matName == "RealEstate") {
|
||||||
maxAmt = buyAmt;
|
maxAmt = corporation.funds.toNumber() / mat.bCost;
|
||||||
} else {
|
} else {
|
||||||
maxAmt = Math.floor((warehouse.size - warehouse.sizeUsed) / MaterialSizes[matName]);
|
maxAmt = Math.floor((warehouse.size - warehouse.sizeUsed) / MaterialSizes[matName]);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user