mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-01-01 21:21:59 +00:00
31 lines
823 B
Plaintext
31 lines
823 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 = 1
|
|
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()
|