From dbdb29d913cc6504a0d8cb0eea54a2f3a2b03f03 Mon Sep 17 00:00:00 2001 From: BordListian Date: Sat, 17 Feb 2018 17:13:08 +0100 Subject: [PATCH] - Makes lava not burn unconstructed heat-exhanging pipes (#35705) --- code/game/machinery/pipe/construction.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/game/machinery/pipe/construction.dm b/code/game/machinery/pipe/construction.dm index bc192a05de..5a1a759d07 100644 --- a/code/game/machinery/pipe/construction.dm +++ b/code/game/machinery/pipe/construction.dm @@ -83,6 +83,8 @@ Buildable meters var/obj/machinery/atmospherics/fakeA = pipe_type name = "[initial(fakeA.name)] fitting" icon_state = initial(fakeA.pipe_state) + if(ispath(pipe_type,/obj/machinery/atmospherics/pipe/heat_exchanging)) + resistance_flags |= FIRE_PROOF | LAVA_PROOF /obj/item/pipe/verb/flip() set category = "Object"