mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-26 09:33:49 +01:00
Fixes #1860 donate to gang faction possible via singularity
also fixes bug i found while testing this where its possible to donate to a faction you arent a member of
This commit is contained in:
parent
fc888505ae
commit
538a440b7e
@ -1175,7 +1175,20 @@ export function NetscriptSingularity(
|
|||||||
helper.updateDynamicRam("donateToFaction", getRamCost(player, "donateToFaction"));
|
helper.updateDynamicRam("donateToFaction", getRamCost(player, "donateToFaction"));
|
||||||
helper.checkSingularityAccess("donateToFaction");
|
helper.checkSingularityAccess("donateToFaction");
|
||||||
const faction = getFaction("donateToFaction", name);
|
const faction = getFaction("donateToFaction", name);
|
||||||
|
if (!player.factions.includes(faction.name)) {
|
||||||
|
workerScript.log(
|
||||||
|
"donateToFaction",
|
||||||
|
() => `You can't donate to '${name}' because you aren't a member`,
|
||||||
|
);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (faction.name === player.getGangFaction().name) {
|
||||||
|
workerScript.log(
|
||||||
|
"donateToFaction",
|
||||||
|
() => `You can't donate to '${name}' because youre managing a gang for it`,
|
||||||
|
);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
if (typeof amt !== "number" || amt <= 0) {
|
if (typeof amt !== "number" || amt <= 0) {
|
||||||
workerScript.log("donateToFaction", () => `Invalid donation amount: '${amt}'.`);
|
workerScript.log("donateToFaction", () => `Invalid donation amount: '${amt}'.`);
|
||||||
return false;
|
return false;
|
||||||
|
Loading…
Reference in New Issue
Block a user