From 55adf8185e97a1abe608503694250502d5170152 Mon Sep 17 00:00:00 2001 From: Slayer55555 Date: Tue, 7 Oct 2025 06:25:23 -0700 Subject: [PATCH] Update src/services/worldStateService.ts --- src/services/worldStateService.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/services/worldStateService.ts b/src/services/worldStateService.ts index c7c04fbc..0d87a57c 100644 --- a/src/services/worldStateService.ts +++ b/src/services/worldStateService.ts @@ -1568,10 +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.slice(0, voidCorruptionWeeks)]; } const isFebruary = date.getUTCMonth() == 1;