mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-26 17:41:05 +00:00
* Harddel Fix Pack #42 + Better Live Reftracking Support * awooga Co-authored-by: LemonInTheDark <58055496+LemonInTheDark@users.noreply.github.com> Co-authored-by: Gandalf <9026500+Gandalf2k15@users.noreply.github.com>
16 lines
800 B
Plaintext
16 lines
800 B
Plaintext
///admin-only base consturctino console subtype for building anywhere!
|
|
/obj/machinery/computer/camera_advanced/base_construction/centcom
|
|
name = "centcom base construction console"
|
|
circuit = /obj/item/circuitboard/computer/base_construction/centcom
|
|
|
|
/obj/machinery/computer/camera_advanced/base_construction/centcom/Initialize(mapload)
|
|
internal_rcd = new(src)
|
|
return ..()
|
|
|
|
/obj/machinery/computer/camera_advanced/base_construction/centcom/restock_materials()
|
|
internal_rcd.matter = internal_rcd.max_matter
|
|
|
|
/obj/machinery/computer/camera_advanced/base_construction/centcom/populate_actions_list()
|
|
actions += new /datum/action/innate/construction/switch_mode(src) //Action for switching the RCD's build modes
|
|
actions += new /datum/action/innate/construction/build(src) //Action for using the RCD
|