mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 18:32:03 +00:00
21 lines
351 B
Plaintext
21 lines
351 B
Plaintext
/obj/machinery/atmospherics/unary/generator_input
|
|
icon = 'heat_exchanger.dmi'
|
|
icon_state = "intact"
|
|
density = 1
|
|
|
|
name = "Generator Input"
|
|
desc = "Placeholder"
|
|
|
|
var/update_cycle
|
|
|
|
update_icon()
|
|
if(node)
|
|
icon_state = "intact"
|
|
else
|
|
icon_state = "exposed"
|
|
|
|
return
|
|
|
|
proc
|
|
return_exchange_air()
|
|
return air_contents |