From 577c1ff1af01fee924afae1073a7020b550c7f10 Mon Sep 17 00:00:00 2001 From: meem <75212565+meemofcourse@users.noreply.github.com> Date: Fri, 6 Oct 2023 15:16:50 -0300 Subject: [PATCH] makes it so you can build lightswitch frames from an autolathe (#2388) ## About The Pull Request ![imagen](https://github.com/shiptest-ss13/Shiptest/assets/75212565/424171f0-d65d-41bf-8341-0c035abb26bb) makes it so you can build lightswitch frames from an autolathe ## Why It's Good For The Game for the love of god ## Changelog :cl: add: You can now build lightswitch frames from an autolathe /:cl: --- code/modules/research/designs/autolathe_designs.dm | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/code/modules/research/designs/autolathe_designs.dm b/code/modules/research/designs/autolathe_designs.dm index f7f471a3d860..3aa9cc7d7767 100644 --- a/code/modules/research/designs/autolathe_designs.dm +++ b/code/modules/research/designs/autolathe_designs.dm @@ -215,6 +215,14 @@ category = list("initial", "Electronics") departmental_flags = DEPARTMENTAL_FLAG_ENGINEERING +/datum/design/lightswitch_frame + name = "Lightswitch Frame" + id = "lightswitch_frame" + build_type = AUTOLATHE + materials = list(/datum/material/iron = 50, /datum/material/glass = 50) + build_path = /obj/item/wallframe/light_switch + category = list("initial", "Misc") + /datum/design/camera name = "Camera" id = "camera"