mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-05-19 13:20:47 +01:00
4d36cfdaeb
* Finish Machinery new to init * fix that --------- Co-authored-by: Cameron Lennox <killer65311@gmail.com>
24 lines
512 B
Plaintext
24 lines
512 B
Plaintext
/**********************Input and output plates**************************/
|
|
|
|
/obj/machinery/mineral/input
|
|
icon = 'icons/mob/screen1.dmi'
|
|
icon_state = "x2"
|
|
name = "Input area"
|
|
density = FALSE
|
|
anchored = TRUE
|
|
|
|
/obj/machinery/mineral/input/Initialize(mapload)
|
|
. = ..()
|
|
icon_state = "blank"
|
|
|
|
/obj/machinery/mineral/output
|
|
icon = 'icons/mob/screen1.dmi'
|
|
icon_state = "x"
|
|
name = "Output area"
|
|
density = FALSE
|
|
anchored = TRUE
|
|
|
|
/obj/machinery/mineral/output/Initialize(mapload)
|
|
. = ..()
|
|
icon_state = "blank"
|