From cc34aae3e3771610ca8e7b81c75e31a78086dd64 Mon Sep 17 00:00:00 2001 From: Aranclanos Date: Wed, 30 Apr 2014 07:40:41 -0300 Subject: [PATCH] Reisin walls and doors will now block superconductivity (heat) Reisin membranes won't --- code/game/objects/effects/aliens.dm | 3 +++ code/game/objects/structures/mineral_doors.dm | 3 +++ 2 files changed, 6 insertions(+) diff --git a/code/game/objects/effects/aliens.dm b/code/game/objects/effects/aliens.dm index 79b77551cc7..c61e64f00b9 100644 --- a/code/game/objects/effects/aliens.dm +++ b/code/game/objects/effects/aliens.dm @@ -47,6 +47,9 @@ desc = "Purple slime solidified into a wall." icon_state = "resinwall" //same as resin, but consistency ho! +/obj/structure/alien/resin/wall/BlockSuperconductivity() + return 1 + /obj/structure/alien/resin/membrane name = "resin membrane" desc = "Purple slime just thin enough to let light pass through." diff --git a/code/game/objects/structures/mineral_doors.dm b/code/game/objects/structures/mineral_doors.dm index b0e07894061..657acb8b02c 100644 --- a/code/game/objects/structures/mineral_doors.dm +++ b/code/game/objects/structures/mineral_doors.dm @@ -268,3 +268,6 @@ playsound(loc, 'sound/effects/attackblob.ogg', 100, 1) ..() +/obj/structure/mineral_door/resin/BlockSuperconductivity() + if(opacity) + return 1 \ No newline at end of file