Fixes unconnected Thermomachine pipe being invisible (#92720)

## About The Pull Request
- Fixes #92700
This commit is contained in:
SyncIt21
2025-08-26 16:46:23 -05:00
committed by GitHub
parent 57004a6987
commit 532c36fd67
@@ -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)