From 30786e7a3a928d2702d3fe065d279dbd26c8831c Mon Sep 17 00:00:00 2001 From: Sainan <63328889+Sainan@users.noreply.github.com> Date: Fri, 11 Apr 2025 19:34:39 +0200 Subject: [PATCH] fix: set activation & expiry for eidolon/venus/deimos bounties --- src/services/worldStateService.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/services/worldStateService.ts b/src/services/worldStateService.ts index f5dde681..dbe61652 100644 --- a/src/services/worldStateService.ts +++ b/src/services/worldStateService.ts @@ -321,6 +321,8 @@ export const getWorldState = (buildLabel?: string): IWorldState => { }; for (const syndicateInfo of worldState.SyndicateMissions) { if (syndicateInfo.Jobs && syndicateInfo.Seed != bountyCycle) { + syndicateInfo.Activation.$date.$numberLong = bountyCycleStart.toString(10); + syndicateInfo.Expiry.$date.$numberLong = bountyCycleEnd.toString(10); syndicateInfo.Seed = bountyCycle; logger.debug(`refreshing jobs for ${syndicateInfo.Tag}`); const rng = new CRng(bountyCycle);