mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-10 09:43:54 +01:00
Prevent seed money outside of 3
This commit is contained in:
parent
e2bb76ae6d
commit
2cfa589da6
@ -62,6 +62,7 @@ export function NetscriptCorporation(
|
||||
function createCorporation(corporationName: string, selfFund = true): boolean {
|
||||
if (!player.canAccessCorporation() || player.hasCorporation()) return false;
|
||||
if (!corporationName) return false;
|
||||
if (player.bitNodeN !== 3 && !selfFund) throw new Error("cannot use seed funds outside of BitNode 3");
|
||||
|
||||
if (selfFund) {
|
||||
if (!player.canAfford(150e9)) return false;
|
||||
@ -498,7 +499,6 @@ export function NetscriptCorporation(
|
||||
};
|
||||
},
|
||||
createCorporation: function (corporationName: string, selfFund = true): boolean {
|
||||
checkAccess("createCorporation");
|
||||
return createCorporation(corporationName, selfFund);
|
||||
},
|
||||
getCorporation: function (): CorporationInfo {
|
||||
|
Loading…
Reference in New Issue
Block a user