From 323d2c0b10d04854fbc0073b92cf717ac4c47276 Mon Sep 17 00:00:00 2001 From: warriorstar-orion Date: Sat, 5 Apr 2025 08:03:13 -0400 Subject: [PATCH] fix atmos machines not updating appearance on shuttle rotate (#28898) --- code/modules/atmospherics/machinery/atmospherics.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/modules/atmospherics/machinery/atmospherics.dm b/code/modules/atmospherics/machinery/atmospherics.dm index 471a8da9582..5726b70ca15 100644 --- a/code/modules/atmospherics/machinery/atmospherics.dm +++ b/code/modules/atmospherics/machinery/atmospherics.dm @@ -76,6 +76,10 @@ Pipelines + Other Objects -> Pipe network // Updates all pipe overlays and underlays update_underlays() +/obj/machinery/atmospherics/onShuttleMove(turf/oldT, turf/T1, rotation, mob/caller) + . = ..() + update_underlays() + /obj/machinery/atmospherics/Destroy() SSair.atmos_machinery -= src SSair.pipenets_to_build -= src