From c909f8c475a9761bfc1e7acc35675beb5e94825f Mon Sep 17 00:00:00 2001 From: Hubblenaut <6383576+Hubblenaut@users.noreply.github.com> Date: Tue, 21 Jan 2025 15:40:41 +0000 Subject: [PATCH] [MIRROR] Treats pressure tanks, connectors and omni devices as above turf --- .../modules/atmospherics/components/omni_devices/omni_base.dm | 1 - code/modules/atmospherics/components/portables_connector.dm | 1 - code/modules/atmospherics/components/unary/tank.dm | 4 +--- 3 files changed, 1 insertion(+), 5 deletions(-) diff --git a/code/modules/atmospherics/components/omni_devices/omni_base.dm b/code/modules/atmospherics/components/omni_devices/omni_base.dm index 886d500f1da33..2784ff5e8a7f4 100644 --- a/code/modules/atmospherics/components/omni_devices/omni_base.dm +++ b/code/modules/atmospherics/components/omni_devices/omni_base.dm @@ -6,7 +6,6 @@ icon = 'icons/atmos/omni_devices.dmi' icon_state = "base" initialize_directions = 0 - level = ATOM_LEVEL_UNDER_TILE layer = ABOVE_CATWALK_LAYER var/configuring = 0 diff --git a/code/modules/atmospherics/components/portables_connector.dm b/code/modules/atmospherics/components/portables_connector.dm index 1cf0b9d28b96c..47e7ed658f6ff 100644 --- a/code/modules/atmospherics/components/portables_connector.dm +++ b/code/modules/atmospherics/components/portables_connector.dm @@ -17,7 +17,6 @@ var/on = 0 use_power = POWER_USE_OFF uncreated_component_parts = null - level = ATOM_LEVEL_UNDER_TILE connect_types = CONNECT_TYPE_REGULAR|CONNECT_TYPE_FUEL build_icon_state = "connector" diff --git a/code/modules/atmospherics/components/unary/tank.dm b/code/modules/atmospherics/components/unary/tank.dm index cf712d9e88f7f..78626350cf19c 100644 --- a/code/modules/atmospherics/components/unary/tank.dm +++ b/code/modules/atmospherics/components/unary/tank.dm @@ -9,7 +9,6 @@ var/start_pressure = 25*ONE_ATMOSPHERE var/filling // list of gas ratios to use. - level = ATOM_LEVEL_UNDER_TILE dir = 2 initialize_directions = 2 density = TRUE @@ -37,7 +36,7 @@ update_icon() /obj/machinery/atmospherics/unary/tank/set_initial_level() - level = ATOM_LEVEL_UNDER_TILE // Always on top, apparently. + level = ATOM_LEVEL_OVER_TILE // Always on top, apparently. // required for paint sprayers to work due to an override in pipes.dm /obj/machinery/atmospherics/unary/tank/set_color(new_color) @@ -120,7 +119,6 @@ color = PIPE_COLOR_WHITE connect_types = CONNECT_TYPE_REGULAR|CONNECT_TYPE_REGULAR|CONNECT_TYPE_SCRUBBER|CONNECT_TYPE_FUEL w_class = ITEM_SIZE_HUGE - level = ATOM_LEVEL_UNDER_TILE dir = SOUTH constructed_path = /obj/machinery/atmospherics/unary/tank pipe_class = PIPE_CLASS_UNARY