From c0c3fae6b26f20dae32738fedfd38d472e2df58d Mon Sep 17 00:00:00 2001 From: Animan8000 Date: Fri, 31 Oct 2025 09:38:57 -0700 Subject: [PATCH] Changing from 200 to 250 --- 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 e33d0861..afd743a9 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: 200, Title: 0 })]; // Getting standing avoids Konzu's "prove yourself" text. 200 is identical to newbie bounty + 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 } await inventory.save(); res.end();