mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-04-06 20:42:11 +01:00
This commit cleans up any remaining relative pathing in the ATMOSPHERICS/ folder, and splits the absolutely huge pipes.dm file into 6-7 files in the pipes/ folder tree.
21 lines
464 B
Plaintext
21 lines
464 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
|