Skip to content

Commit

Permalink
[MIRROR] Layer changes to atmos machines and telebeacon (#2782)
Browse files Browse the repository at this point in the history
Co-authored-by: Hubblenaut <[email protected]>
Co-authored-by: Lexanx <[email protected]>
  • Loading branch information
3 people authored Nov 24, 2024
1 parent fb7b882 commit 6156a52
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion code/__defines/__renderer.dm
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
#define ABOVE_TILE_LAYER 2.05
#define EXPOSED_PIPE_LAYER 2.06
#define EXPOSED_WIRE_LAYER 2.07
#define EXPOSED_WIRE_TERMINAL_LAYER 2.08
#define ABOVE_EXPOSED_WIRE_LAYER 2.08
#define CATWALK_LAYER 2.09
#define ABOVE_CATWALK_LAYER 2.10
#define BLOOD_LAYER 2.11
Expand Down
1 change: 1 addition & 0 deletions code/game/machinery/teleporter/beacon.dm
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ var/global/const/TELEBEACON_WIRE_SIGNALLER = 4
active_power_usage = 50
anchored = TRUE
level = ATOM_LEVEL_UNDER_TILE
layer = ABOVE_EXPOSED_WIRE_LAYER
obj_flags = OBJ_FLAG_ANCHORABLE

machine_name = "teleporter beacon"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@
icon = 'icons/obj/machines/power/teg.dmi'
icon_state = "circ-unassembled"
anchored = FALSE
layer = ABOVE_CATWALK_LAYER

layer = STRUCTURE_LAYER


var/kinetic_efficiency = 0.04 //combined kinetic and kinetic-to-electric efficiency
var/volume_ratio = 0.2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@
construct_state = /singleton/machine_construction/default/panel_closed
uncreated_component_parts = null
stat_immune = 0
layer = ABOVE_CATWALK_LAYER

layer = STRUCTURE_LAYER


machine_name = "oxygen regenerator"
machine_desc = "Catalyzes gaseous CO2 to convert it into gaseous oxygen. The excess carbon is condensed and ejected as graphite sheets."
Expand Down
1 change: 1 addition & 0 deletions code/modules/atmospherics/components/unary/cold_sink.dm
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
construct_state = /singleton/machine_construction/default/panel_closed
uncreated_component_parts = null
stat_immune = 0
layer = STRUCTURE_LAYER

machine_name = "gas cooling system"
machine_desc = "While active, this machine cools the gas in a connected pipeline to lower temperatures. Gas pressure decreases with chilling, allowing it to be compressed more easily."
Expand Down
1 change: 1 addition & 0 deletions code/modules/atmospherics/components/unary/heat_source.dm
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
construct_state = /singleton/machine_construction/default/panel_closed
uncreated_component_parts = null
stat_immune = 0
layer = STRUCTURE_LAYER

machine_name = "gas heating system"
machine_desc = "While active, this machine increases the temperature of a connected gas line to the configured amount. Gas pressure increases with heat."
Expand Down
2 changes: 1 addition & 1 deletion code/modules/power/terminal.dm
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
icon_state = "term"
desc = "It's an underfloor wiring terminal for power equipment."
level = ATOM_LEVEL_UNDER_TILE
layer = EXPOSED_WIRE_TERMINAL_LAYER
layer = ABOVE_EXPOSED_WIRE_LAYER
var/obj/item/stock_parts/power/terminal/master
anchored = TRUE

Expand Down

0 comments on commit 6156a52

Please sign in to comment.