diff --git a/code/game/objects/items/weapons/circuitboards/machinery/research.dm b/code/game/objects/items/weapons/circuitboards/machinery/research.dm index 935ebf33e4..bdf9eca510 100644 --- a/code/game/objects/items/weapons/circuitboards/machinery/research.dm +++ b/code/game/objects/items/weapons/circuitboards/machinery/research.dm @@ -81,6 +81,10 @@ name = T_BOARD("security protolathe") build_path = /obj/machinery/r_n_d/protolathe/security +/obj/item/weapon/circuitboard/protolathe/public + name = T_BOARD("public protolathe") + build_path = /obj/machinery/r_n_d/protolathe/public + // CHOMPAdd End /obj/item/weapon/circuitboard/circuit_imprinter diff --git a/code/modules/research/designs/circuits/circuits.dm b/code/modules/research/designs/circuits/circuits.dm index 1612a1385a..c083d7b436 100644 --- a/code/modules/research/designs/circuits/circuits.dm +++ b/code/modules/research/designs/circuits/circuits.dm @@ -218,6 +218,45 @@ CIRCUITS BELOW sort_string = "HABAB" department = LATHE_ALL | LATHE_SCIENCE // CHOMPAdd +// CHOMPEdit - Departmental Lathes + +/datum/design/circuit/protolathe/science + name = "science protolathe" + build_path = /obj/item/weapon/circuitboard/protolathe/science + sort_string = "HADAA" + +/datum/design/circuit/protolathe/engineering + name = "engineering protolathe" + build_path = /obj/item/weapon/circuitboard/protolathe/engineering + sort_string = "HADAB" + +/datum/design/circuit/protolathe/medical + name = "medical protolathe" + build_path = /obj/item/weapon/circuitboard/protolathe/medical + sort_string = "HADAC" + +/datum/design/circuit/protolathe/cargo + name = "cargo protolathe" + build_path = /obj/item/weapon/circuitboard/protolathe/cargo + sort_string = "HADAD" + +/datum/design/circuit/protolathe/service + name = "service protolathe" + build_path = /obj/item/weapon/circuitboard/protolathe/service + sort_string = "HADAE" + +/datum/design/circuit/protolathe/security + name = "security protolathe" + build_path = /obj/item/weapon/circuitboard/protolathe/security + sort_string = "HADAF" + +/datum/design/circuit/protolathe/public + name = "public protolathe" + build_path = /obj/item/weapon/circuitboard/protolathe/public + sort_string = "HADAG" + +// CHOMPEdit End + /datum/design/circuit/circuit_imprinter name = "circuit imprinter" id = "circuit_imprinter" diff --git a/maps/southern_cross/southern_cross-2.dmm b/maps/southern_cross/southern_cross-2.dmm index c0333b09ff..9731e784c9 100644 --- a/maps/southern_cross/southern_cross-2.dmm +++ b/maps/southern_cross/southern_cross-2.dmm @@ -51586,7 +51586,7 @@ /obj/machinery/computer/rdconsole/public{ dir = 4; req_one_access = list(10); - name = "Medical Protolathe console"; + name = "Engineering Protolathe console"; is_public = 0 }, /turf/simulated/floor/tiled, diff --git a/modular_chomp/code/modules/research/lathes/protolathe.dm b/modular_chomp/code/modules/research/lathes/protolathe.dm index 02830aa8d8..21ed137b3c 100644 --- a/modular_chomp/code/modules/research/lathes/protolathe.dm +++ b/modular_chomp/code/modules/research/lathes/protolathe.dm @@ -2,32 +2,40 @@ name = "Science Protolathe" req_category = LATHE_SCIENCE dep_overlay = "sci" + circuit = /obj/item/weapon/circuitboard/protolathe/science /obj/machinery/r_n_d/protolathe/engineering name = "Engineering Protolathe" req_category = LATHE_ENGINEERING dep_overlay = "engi" + circuit = /obj/item/weapon/circuitboard/protolathe/engineering /obj/machinery/r_n_d/protolathe/medical name = "Medical Protolathe" req_category = LATHE_MEDICAL dep_overlay = "med" + circuit = /obj/item/weapon/circuitboard/protolathe/medical /obj/machinery/r_n_d/protolathe/cargo name = "Cargo Protolathe" req_category = LATHE_CARGO dep_overlay = "cargo" + circuit = /obj/item/weapon/circuitboard/protolathe/cargo /obj/machinery/r_n_d/protolathe/service name = "Service Protolathe" req_category = LATHE_SERVICE dep_overlay = "serv" + circuit = /obj/item/weapon/circuitboard/protolathe/service /obj/machinery/r_n_d/protolathe/security name = "Security Protolathe" req_category = LATHE_SECURITY dep_overlay = "sec" + circuit = /obj/item/weapon/circuitboard/protolathe/security +// Actually unsure if this should be used? *shrug /obj/machinery/r_n_d/protolathe/public name = "Public Protolathe" req_category = LATHE_PUBLIC + circuit = /obj/item/weapon/circuitboard/protolathe/public