diff --git a/code/defines/obj/weapon.dm b/code/defines/obj/weapon.dm index aea140d1dc9..6d829e5e35d 100644 --- a/code/defines/obj/weapon.dm +++ b/code/defines/obj/weapon.dm @@ -1215,6 +1215,8 @@ name = "power control module" icon_state = "power_mod" desc = "Heavy-duty switching circuits for power control." + m_amt = 50 + g_amt = 50 /obj/item/weapon/module/id_auth name = "ID authentication module" diff --git a/code/game/machinery/autolathe.dm b/code/game/machinery/autolathe.dm index d01e0b90887..b0d4fca9418 100644 --- a/code/game/machinery/autolathe.dm +++ b/code/game/machinery/autolathe.dm @@ -236,6 +236,8 @@ var/global/list/autolathe_recipes = list( \ new /obj/item/clothing/head/helmet/welding(), \ new /obj/item/weapon/stock_parts/console_screen(), \ new /obj/item/weapon/airlock_electronics(), \ + new /obj/item/weapon/module/power_control(), \ + new /obj/item/weapon/circuitboard/disposal(), \ new /obj/item/stack/sheet/metal(), \ new /obj/item/stack/sheet/glass(), \ new /obj/item/stack/sheet/rglass(), \ diff --git a/code/game/machinery/constructable_frame.dm b/code/game/machinery/constructable_frame.dm index d5fd61c8620..ab538ee70cf 100644 --- a/code/game/machinery/constructable_frame.dm +++ b/code/game/machinery/constructable_frame.dm @@ -251,3 +251,5 @@ obj/item/weapon/circuitboard/rdserver req_components = list( "/obj/item/weapon/stock_parts/matter_bin" = 1, "/obj/item/weapon/cable_coil" = 1) + m_amt = 50 + g_amt = 50 \ No newline at end of file diff --git a/code/modules/research/designs.dm b/code/modules/research/designs.dm index 6644f015db6..39d5fd07485 100644 --- a/code/modules/research/designs.dm +++ b/code/modules/research/designs.dm @@ -76,15 +76,6 @@ datum materials = list("$glass" = 2000, "acid" = 20) build_path = "/obj/item/weapon/circuitboard/security" - disposal - name = "Circuit Design (Disposal)" - desc = "Allows for the construction of circuit boards used to build disposal bins." - id = "disposal" - req_tech = list("engineering" = 2) - build_type = IMPRINTER - materials = list("$glass" = 2000, "acid" = 20) - build_path = "/obj/item/weapon/circuitboard/disposal" - aicore name = "Circuit Design (AI Core)" desc = "Allows for the construction of circuit boards used to build new AI cores."