From 6c00a5c6b423ae54a235b1c4e821fa78470e1e18 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Sun, 13 Sep 2020 04:57:55 +0200 Subject: [PATCH] [MIRROR] Fixes mixer and filter icon_states, Part 2. (#785) * Fixes mixer and filter icon_states, Part 2. (#53625) Fixes invalid default icon_states that caused issues with mapping utils such as SDMM. * Fixes mixer and filter icon_states, Part 2. Co-authored-by: SamuelRowe --- .../machinery/components/trinary_devices/filter.dm | 12 ++++++------ .../machinery/components/trinary_devices/mixer.dm | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/code/modules/atmospherics/machinery/components/trinary_devices/filter.dm b/code/modules/atmospherics/machinery/components/trinary_devices/filter.dm index f2b0e9c8867..562cea9a8b5 100644 --- a/code/modules/atmospherics/machinery/components/trinary_devices/filter.dm +++ b/code/modules/atmospherics/machinery/components/trinary_devices/filter.dm @@ -1,5 +1,5 @@ /obj/machinery/atmospherics/components/trinary/filter - icon_state = "filter_off" + icon_state = "filter_off-0" density = FALSE name = "gas filter" @@ -186,7 +186,7 @@ /obj/machinery/atmospherics/components/trinary/filter/on on = TRUE - icon_state = "filter_on" + icon_state = "filter_on-0" /obj/machinery/atmospherics/components/trinary/filter/on/layer2 piping_layer = 2 @@ -196,7 +196,7 @@ icon_state = "filter_on_map-4" /obj/machinery/atmospherics/components/trinary/filter/flipped - icon_state = "filter_off_f" + icon_state = "filter_off-0_f" flipped = TRUE /obj/machinery/atmospherics/components/trinary/filter/flipped/layer2 @@ -208,7 +208,7 @@ /obj/machinery/atmospherics/components/trinary/filter/flipped/on on = TRUE - icon_state = "filter_on_f" + icon_state = "filter_on-0_f" /obj/machinery/atmospherics/components/trinary/filter/flipped/on/layer2 piping_layer = 2 @@ -219,7 +219,7 @@ /obj/machinery/atmospherics/components/trinary/filter/atmos //Used for atmos waste loops on = TRUE - icon_state = "filter_on" + icon_state = "filter_on-0" /obj/machinery/atmospherics/components/trinary/filter/atmos/n2 name = "nitrogen filter" filter_type = "n2" @@ -237,7 +237,7 @@ filter_type = "plasma" /obj/machinery/atmospherics/components/trinary/filter/atmos/flipped //This feels wrong, I know - icon_state = "filter_on_f" + icon_state = "filter_on-0_f" flipped = TRUE /obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/n2 name = "nitrogen filter" diff --git a/code/modules/atmospherics/machinery/components/trinary_devices/mixer.dm b/code/modules/atmospherics/machinery/components/trinary_devices/mixer.dm index fd9968cc037..a706cda80b8 100644 --- a/code/modules/atmospherics/machinery/components/trinary_devices/mixer.dm +++ b/code/modules/atmospherics/machinery/components/trinary_devices/mixer.dm @@ -1,5 +1,5 @@ /obj/machinery/atmospherics/components/trinary/mixer - icon_state = "mixer_off" + icon_state = "mixer_off-0" density = FALSE name = "gas mixer" @@ -192,7 +192,7 @@ /obj/machinery/atmospherics/components/trinary/mixer/on on = TRUE - icon_state = "mixer_on" + icon_state = "mixer_on-0" /obj/machinery/atmospherics/components/trinary/mixer/on/layer2 piping_layer = 2 @@ -202,7 +202,7 @@ icon_state = "mixer_on_map-4" /obj/machinery/atmospherics/components/trinary/mixer/flipped - icon_state = "mixer_off_f" + icon_state = "mixer_off-0_f" flipped = TRUE /obj/machinery/atmospherics/components/trinary/mixer/flipped/layer2 @@ -214,7 +214,7 @@ /obj/machinery/atmospherics/components/trinary/mixer/flipped/on on = TRUE - icon_state = "mixer_on_f" + icon_state = "mixer_on-0_f" /obj/machinery/atmospherics/components/trinary/mixer/flipped/on/layer2 piping_layer = 2 @@ -225,7 +225,7 @@ /obj/machinery/atmospherics/components/trinary/mixer/airmix //For standard airmix to distro name = "air mixer" - icon_state = "mixer_on" + icon_state = "mixer_on-0" node1_concentration = N2STANDARD node2_concentration = O2STANDARD target_pressure = MAX_OUTPUT_PRESSURE @@ -236,7 +236,7 @@ node2_concentration = N2STANDARD /obj/machinery/atmospherics/components/trinary/mixer/airmix/flipped - icon_state = "mixer_on_f" + icon_state = "mixer_on-0_f" flipped = TRUE /obj/machinery/atmospherics/components/trinary/mixer/airmix/flipped/inverse