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;