From a6ea346b8cf22bc2e75109479efe2e5a6e523116 Mon Sep 17 00:00:00 2001 From: MrPerson Date: Sun, 26 Mar 2017 10:04:01 -0700 Subject: [PATCH] Fixes rad storms making space black (#25482) --- code/datums/weather/weather.dm | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/code/datums/weather/weather.dm b/code/datums/weather/weather.dm index f7852d48569..75c42845ead 100644 --- a/code/datums/weather/weather.dm +++ b/code/datums/weather/weather.dm @@ -126,7 +126,6 @@ var/area/N = V N.layer = overlay_layer N.icon = 'icons/effects/weather_effects.dmi' - N.invisibility = 0 N.color = weather_color switch(stage) if(STARTUP_STAGE) @@ -137,8 +136,7 @@ N.icon_state = end_overlay if(END_STAGE) N.color = null - N.icon_state = initial(N.icon_state) + N.icon_state = "" N.icon = 'icons/turf/areas.dmi' N.layer = AREA_LAYER //Just default back to normal area stuff since I assume setting a var is faster than initial - N.invisibility = INVISIBILITY_MAXIMUM N.set_opacity(FALSE)