From 34a7bc645a7e64faa8ad741fdcbc3b07497097e2 Mon Sep 17 00:00:00 2001 From: Markolie Date: Sun, 18 Jan 2015 04:50:11 +0100 Subject: [PATCH] Plasma iwndow coloring fix --- code/game/objects/structures/window.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/structures/window.dm b/code/game/objects/structures/window.dm index 79e0ed5bb74..c5d28ba8908 100644 --- a/code/game/objects/structures/window.dm +++ b/code/game/objects/structures/window.dm @@ -381,7 +381,7 @@ var/global/wcColored /obj/structure/window/New(Loc,re=0) ..() ini_dir = dir - if(!color) + if(!color && !istype(src,/obj/structure/window/plasmabasic) && !istype(src,/obj/structure/window/plasmareinforced)) color = color_windows(src) update_nearby_tiles(need_rebuild=1) update_nearby_icons()