From 502b8aebc51a6644474f7e31485d142c6f228ae7 Mon Sep 17 00:00:00 2001 From: Mark van Alphen Date: Thu, 9 May 2019 05:09:54 +0200 Subject: [PATCH] Weather lighting fix --- code/datums/weather/weather.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/datums/weather/weather.dm b/code/datums/weather/weather.dm index 2f3a4c4bcba..f1773e9210d 100644 --- a/code/datums/weather/weather.dm +++ b/code/datums/weather/weather.dm @@ -135,6 +135,6 @@ N.color = null 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.layer = initial(N.layer) + N.plane = initial(N.plane) N.set_opacity(FALSE)