From 940d21740be58cd5c0c3c6322d33f8cd345ca643 Mon Sep 17 00:00:00 2001 From: SmArtKar <44720187+SmArtKar@users.noreply.github.com> Date: Sat, 4 Jul 2026 19:51:09 +0200 Subject: [PATCH] Fixes rain overlay rendering (only) with particle weather enabled (#96776) ## About The Pull Request This achieved opposite of the desired effect, making the overlay render only with the particle weather pref ON, not OFF ## Changelog :cl: fix: Fixed rain overlay rendering (only) with particle weather enabled /:cl: --- code/datums/weather/weather_types/rain_storm.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/weather/weather_types/rain_storm.dm b/code/datums/weather/weather_types/rain_storm.dm index e3e7380f34c..43e9a375fa0 100644 --- a/code/datums/weather/weather_types/rain_storm.dm +++ b/code/datums/weather/weather_types/rain_storm.dm @@ -17,7 +17,7 @@ end_duration = 30 SECONDS // Don't display overlays when using particle weather - weather_alpha = 0 + overlay_planes = list(WEATHER_PLANE) weather_duration_lower = 3 MINUTES weather_duration_upper = 5 MINUTES