From 532c36fd673d115ec35be6c251ee803bd997c24c Mon Sep 17 00:00:00 2001 From: SyncIt21 <110812394+SyncIt21@users.noreply.github.com> Date: Wed, 27 Aug 2025 03:16:23 +0530 Subject: [PATCH] Fixes unconnected Thermomachine pipe being invisible (#92720) ## About The Pull Request - Fixes #92700 --- .../machinery/components/unary_devices/thermomachine.dm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/code/modules/atmospherics/machinery/components/unary_devices/thermomachine.dm b/code/modules/atmospherics/machinery/components/unary_devices/thermomachine.dm index 24674e2e10b..077fb430ea2 100644 --- a/code/modules/atmospherics/machinery/components/unary_devices/thermomachine.dm +++ b/code/modules/atmospherics/machinery/components/unary_devices/thermomachine.dm @@ -126,9 +126,8 @@ /obj/machinery/atmospherics/components/unary/thermomachine/update_overlays() . = ..() - var/mutable_appearance/thermo_overlay = new(icon) - var/image/pipe = get_pipe_image(thermo_overlay, "pipe", dir, pipe_color, piping_layer) - pipe.appearance_flags |= RESET_COLOR|KEEP_APART + var/image/pipe = get_pipe_image('icons/obj/machines/atmospherics/thermomachine.dmi', "pipe", dir, pipe_color, piping_layer) + pipe.appearance_flags |= RESET_COLOR | KEEP_APART . += pipe /obj/machinery/atmospherics/components/unary/thermomachine/examine(mob/user)