From 28074e971dce57e667d712cc42fff218b460f029 Mon Sep 17 00:00:00 2001 From: Heroman3003 <31296024+Heroman3003@users.noreply.github.com> Date: Wed, 17 Apr 2019 10:24:05 +1000 Subject: [PATCH] Fixes silicate making fulltile windows invisible --- code/game/objects/structures/window.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/game/objects/structures/window.dm b/code/game/objects/structures/window.dm index 444ca1ce35..f0bab9970a 100644 --- a/code/game/objects/structures/window.dm +++ b/code/game/objects/structures/window.dm @@ -83,8 +83,9 @@ /obj/structure/window/proc/updateSilicate() if (overlays) overlays.Cut() + update_icon() - var/image/img = image(src.icon, src.icon_state) + var/image/img = image(src) img.color = "#ffffff" img.alpha = silicate * 255 / 100 overlays += img