From 9adde599b63c7801e6580a4ace8627ab2bbff6c3 Mon Sep 17 00:00:00 2001 From: Animan8000 Date: Fri, 31 Oct 2025 11:38:04 -0700 Subject: [PATCH] Update info --- src/controllers/custom/completeAllMissionsController.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controllers/custom/completeAllMissionsController.ts b/src/controllers/custom/completeAllMissionsController.ts index afd743a9..b15d3010 100644 --- a/src/controllers/custom/completeAllMissionsController.ts +++ b/src/controllers/custom/completeAllMissionsController.ts @@ -39,7 +39,7 @@ export const completeAllMissionsController: RequestHandler = async (req, res) => let syndicate = inventory.Affiliations.find(x => x.Tag == "CetusSyndicate"); if (!syndicate) { syndicate = - inventory.Affiliations[inventory.Affiliations.push({ Tag: "CetusSyndicate", Standing: 250, Title: 0 })]; // Getting standing avoids Konzu's "prove yourself" text. 250 is identical to newbie bounty + bonus + 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();