diff --git a/src/data/weather.ts b/src/data/weather.ts index ef5cefeaff..ba12276298 100644 --- a/src/data/weather.ts +++ b/src/data/weather.ts @@ -146,7 +146,12 @@ const cloudyStates = new Set([ "lightning-rainy", ]); -const rainStates = new Set(["hail", "rainy", "pouring"]); +const rainStates = new Set([ + "hail", + "rainy", + "pouring", + "lightning-rainy", +]); const windyStates = new Set(["windy", "windy-variant"]);