From d794bd94ceae48750a5a4c69cca4d3bb5c4f1d2e Mon Sep 17 00:00:00 2001 From: Animan8000 Date: Sat, 1 Nov 2025 02:52:15 -0700 Subject: [PATCH] fix: skip "prove yourself" text when unlocking all missions via cheat (#2965) Even tho the PoE beginner bounty was skipped by the cheat, Konzu would still say "Gotta prove yourself first". Giving a non-zero standing value seems to bypass that (in this case I put ~~200~~ 250 which is identical to completing beginner bounty with bonus). Reviewed-on: https://onlyg.it/OpenWF/SpaceNinjaServer/pulls/2965 Reviewed-by: Sainan <63328889+sainan@users.noreply.github.com> Co-authored-by: Animan8000 Co-committed-by: Animan8000 --- src/controllers/custom/completeAllMissionsController.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/controllers/custom/completeAllMissionsController.ts b/src/controllers/custom/completeAllMissionsController.ts index e56a678051..b15d301095 100644 --- a/src/controllers/custom/completeAllMissionsController.ts +++ b/src/controllers/custom/completeAllMissionsController.ts @@ -36,6 +36,11 @@ export const completeAllMissionsController: RequestHandler = async (req, res) => } addString(inventory.NodeIntrosCompleted, "TeshinHardModeUnlocked"); addString(inventory.NodeIntrosCompleted, "CetusSyndicate_IntroJob"); + let syndicate = inventory.Affiliations.find(x => x.Tag == "CetusSyndicate"); + if (!syndicate) { + syndicate = + inventory.Affiliations[inventory.Affiliations.push({ Tag: "CetusSyndicate", Standing: 250, Title: 0 })]; // Non-zero standing avoids Konzu's "prove yourself" text. 250 is identical to newbie bounty + bonus + } await inventory.save(); res.end(); };