Skip to content

Commit

Permalink
[MIRROR] aligns certain binary atmos device map sprites + extra layer…
Browse files Browse the repository at this point in the history
… prefabs (#1621)

* aligns certain binary atmos device map sprites + extra layer prefabs (#82172)

## About The Pull Request

![StrongDMM-2024-03-23 12 02
18](https://github.com/tgstation/tgstation/assets/70376633/78a57434-5b8f-4566-803d-77d1cef9d257)
this looks bad
undoes that

## Why It's Good For The Game

it looks better
Fixes tgstation/tgstation#82058

## Changelog

not player facing

* aligns certain binary atmos device map sprites + extra layer prefabs

---------

Co-authored-by: jimmyl <[email protected]>
  • Loading branch information
2 people authored and StealsThePRs committed Mar 25, 2024
1 parent e8688bf commit 21faac4
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -140,3 +140,13 @@
else
to_chat(user, span_notice("You set the [src]'s sensors to the default settings."))
return TRUE

//mapping

/obj/machinery/atmospherics/components/binary/temperature_gate/layer2
piping_layer = 2
icon_state = "tgate_map-2"

/obj/machinery/atmospherics/components/binary/temperature_gate/layer4
piping_layer = 4
icon_state = "tgate_map-4"
Original file line number Diff line number Diff line change
Expand Up @@ -106,3 +106,25 @@
heat_transfer_rate = clamp(rate, 0, max_heat_transfer_rate)
investigate_log("was set to [heat_transfer_rate]% by [key_name(usr)]", INVESTIGATE_ATMOS)
update_appearance()

//mapping

/obj/machinery/atmospherics/components/binary/temperature_pump/layer2
icon_state = "tpump_map-2"
piping_layer = 2

/obj/machinery/atmospherics/components/binary/temperature_pump/layer4
icon_state = "tpump_map-4"
piping_layer = 4

/obj/machinery/atmospherics/components/binary/temperature_pump/on
on = TRUE
icon_state = "tpump_on_map-3"

/obj/machinery/atmospherics/components/binary/temperature_pump/on/layer2
icon_state = "tpump_on_map-2"
piping_layer = 2

/obj/machinery/atmospherics/components/binary/temperature_pump/on/layer4
icon_state = "tpump_on_map-4"
piping_layer = 4
Original file line number Diff line number Diff line change
Expand Up @@ -174,11 +174,11 @@

/obj/machinery/atmospherics/components/binary/volume_pump/on/layer2
piping_layer = 2
icon_state = "volpump_map-2"
icon_state = "volpump_on_map-2"

/obj/machinery/atmospherics/components/binary/volume_pump/on/layer4
piping_layer = 4
icon_state = "volpump_map-4"
icon_state = "volpump_on_map-4"

/obj/item/circuit_component/atmos_volume_pump
display_name = "Atmospheric Volume Pump"
Expand Down
Binary file modified icons/obj/machines/atmospherics/binary_devices.dmi
Binary file not shown.

0 comments on commit 21faac4

Please sign in to comment.