From 3da718d3b192f5a19d4b87755ba042b1172cf5d3 Mon Sep 17 00:00:00 2001 From: duncathan salt Date: Sun, 15 Oct 2017 18:31:57 -0600 Subject: [PATCH] closed turfs remove themselves from SSair.high_pressure_delta on change (#31733) --- code/game/turfs/closed.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/game/turfs/closed.dm b/code/game/turfs/closed.dm index a011c7053a..029bb5b212 100644 --- a/code/game/turfs/closed.dm +++ b/code/game/turfs/closed.dm @@ -9,6 +9,10 @@ . = ..() AddComponent(/datum/component/rad_insulation, RAD_MEDIUM_INSULATION) +/turf/closed/ChangeTurf() + . = ..() + SSair.high_pressure_delta -= src + /turf/closed/get_smooth_underlay_icon(mutable_appearance/underlay_appearance, turf/asking_turf, adjacency_dir) return FALSE