diff --git a/src/services/worldStateService.ts b/src/services/worldStateService.ts index 2120ad68..bcb5495a 100644 --- a/src/services/worldStateService.ts +++ b/src/services/worldStateService.ts @@ -1483,17 +1483,15 @@ export const getWorldState = (buildLabel?: string): IWorldState => { ScheduleInfo: [] }; worldState.PrimeVaultTraders.push(pt); - if (isBeforeNextExpectedWorldStateRefresh(timeMs, weekStart)) { - const rotation = config.worldState?.varziaOverride || getVarziaRotation(week); - pt.Manifest = config.worldState?.varziaFullyStocked ? getAllVarziaManifests() : getVarziaManifest(rotation); - if (config.worldState?.varziaOverride || config.worldState?.varziaFullyStocked) { - pt.Expiry = { $date: { $numberLong: "2000000000000" } }; - } else { - pt.ScheduleInfo.push({ - Expiry: { $date: { $numberLong: (weekEnd + unixTimesInMs.week).toString() } }, - FeaturedItem: getVarziaRotation(week + 1) - }); - } + const rotation = config.worldState?.varziaOverride || getVarziaRotation(week); + pt.Manifest = config.worldState?.varziaFullyStocked ? getAllVarziaManifests() : getVarziaManifest(rotation); + if (config.worldState?.varziaOverride || config.worldState?.varziaFullyStocked) { + pt.Expiry = { $date: { $numberLong: "2000000000000" } }; + } else { + pt.ScheduleInfo.push({ + Expiry: { $date: { $numberLong: (weekEnd + unixTimesInMs.week).toString() } }, + FeaturedItem: getVarziaRotation(week + 1) + }); } }