remove unnecessary comma
All checks were successful
Build / build (pull_request) Successful in 3m40s

This commit is contained in:
Slayer55555 2025-10-07 13:29:30 -07:00
parent 9b1db045a8
commit be1b2a40e3

View File

@ -1570,7 +1570,7 @@ export const getWorldState = (buildLabel?: string): IWorldState => {
["voidCorruptionWeek1", 0],
["voidCorruptionWeek2", 1],
["voidCorruptionWeek3", 2],
["voidCorruptionWeek4", 3],
["voidCorruptionWeek4", 3]
] as const;
const selected = vcWeeks.filter(([flag]) => config.worldState?.[flag]).map(([, idx]) => voidCorruptionAlerts[idx]);