Merge pull request #2353 from TheMas3212/fix-1860

Fix 1860 donate to gang faction possible via singularity
This commit is contained in:
hydroflame 2022-01-05 10:14:49 -05:00 committed by GitHub
commit 74ef8994bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1175,7 +1175,20 @@ export function NetscriptSingularity(
helper.updateDynamicRam("donateToFaction", getRamCost(player, "donateToFaction"));
helper.checkSingularityAccess("donateToFaction");
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 (player.inGang() && 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) {
workerScript.log("donateToFaction", () => `Invalid donation amount: '${amt}'.`);
return false;