From d757649fc82f2179d138f9cf3fefdc4c70522d73 Mon Sep 17 00:00:00 2001 From: Roxy <75404941+TealSeer@users.noreply.github.com> Date: Sat, 8 Feb 2025 00:02:36 -0600 Subject: [PATCH] Fix crystallizer pipe connectors missing (#89345) ## About The Pull Request Fixed a visual bug wherein the crystallizer wouldn't show the two pipe connectors it has when there was no pipe connected to them. | Before | After | --------|-------- | ![image](https://github.com/user-attachments/assets/b34ac8b2-88e8-4431-98e0-8d7b916a5914) | ![image](https://github.com/user-attachments/assets/ce6f4017-1470-4545-b866-df480041fc80) | ## Why It's Good For The Game Bug fix is nice ## Changelog :cl: fix: Fixed the crystallizer missing pipe connectors /:cl: --- .../machinery/components/gas_recipe_machines/crystallizer.dm | 1 - 1 file changed, 1 deletion(-) diff --git a/code/modules/atmospherics/machinery/components/gas_recipe_machines/crystallizer.dm b/code/modules/atmospherics/machinery/components/gas_recipe_machines/crystallizer.dm index b5cc7c628df..e06b3b52458 100644 --- a/code/modules/atmospherics/machinery/components/gas_recipe_machines/crystallizer.dm +++ b/code/modules/atmospherics/machinery/components/gas_recipe_machines/crystallizer.dm @@ -71,7 +71,6 @@ /obj/machinery/atmospherics/components/binary/crystallizer/update_overlays() . = ..() - cut_overlays() var/mutable_appearance/pipe_appearance1 = mutable_appearance('icons/obj/pipes_n_cables/pipe_underlays.dmi', "intact_[dir]_[piping_layer]", layer = GAS_SCRUBBER_LAYER) pipe_appearance1.color = COLOR_LIME var/mutable_appearance/pipe_appearance2 = mutable_appearance('icons/obj/pipes_n_cables/pipe_underlays.dmi', "intact_[REVERSE_DIR(dir)]_[piping_layer]", layer = GAS_SCRUBBER_LAYER)