Changing from 200 to 250
All checks were successful
Build / build (pull_request) Successful in 1m53s

This commit is contained in:
Animan8000 2025-10-31 09:38:57 -07:00
parent e1bf7cdfdf
commit c0c3fae6b2

View File

@ -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();