From d2585f5b094f1cda48e2d544b69b011ff090a4bc Mon Sep 17 00:00:00 2001 From: Sainan <63328889+Sainan@users.noreply.github.com> Date: Fri, 11 Apr 2025 00:44:50 +0200 Subject: [PATCH] log when refreshing jobs --- src/services/worldStateService.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/services/worldStateService.ts b/src/services/worldStateService.ts index c97d1225..524c1248 100644 --- a/src/services/worldStateService.ts +++ b/src/services/worldStateService.ts @@ -322,6 +322,7 @@ export const getWorldState = (buildLabel?: string): IWorldState => { for (const syndicateInfo of worldState.SyndicateMissions) { if (syndicateInfo.Jobs && syndicateInfo.Seed != bountyCycle) { syndicateInfo.Seed = bountyCycle; + logger.debug(`refreshing jobs for ${syndicateInfo.Tag}`); const rng = new CRng(bountyCycle); const table = String.fromCharCode(65 + ((bountyCycle - 1) % 3)); const vaultTable = String.fromCharCode(65 + ((bountyCycle - 2) % 3));