From 26f1cd88d5bd251b7181dc2cde8100abd2a61486 Mon Sep 17 00:00:00 2001 From: Tigercat2000 Date: Fri, 1 May 2015 07:52:29 -0700 Subject: [PATCH] ONE DAY I WILL HAVE FIXED TOXINS MIXING I left out a very important define from plasma windows that prevents them from heating the room --- code/game/objects/structures/window.dm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/code/game/objects/structures/window.dm b/code/game/objects/structures/window.dm index f0f4c9855f3..4bcadcb265d 100644 --- a/code/game/objects/structures/window.dm +++ b/code/game/objects/structures/window.dm @@ -417,6 +417,8 @@ var/global/wcColored hit(round(exposed_volume / 1000), 0) ..() +/obj/structure/window/plasmabasic/BlockSuperconductivity() + return 1 /obj/structure/window/plasmareinforced name = "reinforced plasma window" @@ -442,6 +444,9 @@ var/global/wcColored /obj/structure/window/plasmareinforced/fire_act(datum/gas_mixture/air, exposed_temperature, exposed_volume) return +/obj/structure/window/plasmareinforced/BlockSuperconductivity() + return 1 //okay this SHOULD MAKE THE TOXINS CHAMBER WORK + /obj/structure/window/reinforced name = "reinforced window" desc = "It looks rather strong. Might take a few good hits to shatter it."