diff --git a/src/services/worldStateService.ts b/src/services/worldStateService.ts index 0d87a57c..9b03bf17 100644 --- a/src/services/worldStateService.ts +++ b/src/services/worldStateService.ts @@ -1568,7 +1568,7 @@ export const getWorldState = (buildLabel?: string): IWorldState => { const voidCorruptionWeeks = config.worldState?.voidCorruption ?? 0; if (voidCorruptionWeeks > 0) { - worldState.Alerts = [...worldState.Alerts, ...voidCorruptionAlerts.slice(0, voidCorruptionWeeks)]; + worldState.Alerts = [...worldState.Alerts, voidCorruptionAlerts[voidCorruptionWeeks - 1]]; } const isFebruary = date.getUTCMonth() == 1;