mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-21 15:51:31 +00:00
21 lines
444 B
Plaintext
21 lines
444 B
Plaintext
/obj/machinery/atmospherics/unary/generator_input
|
|
icon = 'icons/obj/atmospherics/heat_exchanger.dmi'
|
|
icon_state = "intact"
|
|
density = 1
|
|
|
|
name = "generator input"
|
|
desc = "Placeholder"
|
|
|
|
var/update_cycle
|
|
|
|
/obj/machinery/atmospherics/unary/generator_input/update_icon()
|
|
if(node)
|
|
icon_state = "intact"
|
|
else
|
|
icon_state = "exposed"
|
|
|
|
return
|
|
|
|
/obj/machinery/atmospherics/unary/generator_input/proc/return_exchange_air()
|
|
return air_contents
|