Files
Paradise/code/modules/awaymissions/mission_code/shuttle_shadow.dm
Contrabang ef7e48db9c Makes a ton of dirs into defines (#31244)
* Makes a ton of dirs into defines

* lol oops

* "fix"

* ignore everything
2025-12-12 20:32:33 +00:00

31 lines
827 B
Plaintext

/obj/machinery/atmospherics/unary/passive_vent/high_volume/shadow
/obj/machinery/atmospherics/unary/passive_vent/high_volume/shadow/process_atmos()
if(!on)
return
..()
/obj/machinery/atmospherics/unary/passive_vent/high_volume/shadow/on_changed_z_level(turf/old_turf, turf/new_turf)
. = ..()
if(is_station_level(new_turf?.z))
on = TRUE
/obj/machinery/atmospherics/trinary/filter/shadow
name = "gas filter (Co2 Outlet)"
dir = NORTH
filter_type = 3
target_pressure = 99999
/obj/machinery/atmospherics/trinary/filter/shadow/on_changed_z_level(turf/old_turf, turf/new_turf)
. = ..()
if(is_station_level(new_turf?.z))
on = TRUE
/obj/machinery/igniter/shadow
/obj/machinery/igniter/shadow/on_changed_z_level(turf/old_turf, turf/new_turf)
. = ..()
if(is_station_level(new_turf?.z))
on = TRUE
update_icon()