From d5773eea2de4f7f6e1994291c544a129e57b24bd Mon Sep 17 00:00:00 2001 From: 81Denton <32391752+81Denton@users.noreply.github.com> Date: Thu, 6 Dec 2018 09:00:24 +0100 Subject: [PATCH] Fix 4-way H/E manifold icon (#41809) The icon state "manifold4w" doesn't exist for 4-way H/E manifolds, which is why their icon doesn't show up in Dream Maker. This PR fixes that. --- .../atmospherics/machinery/pipes/heat_exchange/manifold4w.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/atmospherics/machinery/pipes/heat_exchange/manifold4w.dm b/code/modules/atmospherics/machinery/pipes/heat_exchange/manifold4w.dm index 516de3491a1..735d69c7296 100644 --- a/code/modules/atmospherics/machinery/pipes/heat_exchange/manifold4w.dm +++ b/code/modules/atmospherics/machinery/pipes/heat_exchange/manifold4w.dm @@ -2,7 +2,7 @@ /obj/machinery/atmospherics/pipe/heat_exchanging/manifold4w icon = 'icons/obj/atmospherics/pipes/he-manifold.dmi' - icon_state = "manifold4w" + icon_state = "manifold4w-2" name = "4-way pipe manifold" desc = "A manifold composed of heat-exchanging pipes."