From 9ad887942e2f2ecfd6d3172a6ecfeed2bec1ca80 Mon Sep 17 00:00:00 2001 From: karwosts <32912880+karwosts@users.noreply.github.com> Date: Sat, 26 Jul 2025 22:54:25 -0700 Subject: [PATCH] Add raindrops to lightning-rainy state SVG (#26298) --- src/data/weather.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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"]);