From 4b3467db152e0a3642e81966b390e35d8b4889e9 Mon Sep 17 00:00:00 2001 From: LordNest Date: Mon, 1 Jan 2024 21:08:08 +0400 Subject: [PATCH] =?UTF-8?q?=D0=9D=D1=83-=D0=BA=D0=B0=20=D0=BC=D0=B5=D1=87?= =?UTF-8?q?=D0=B8=20=D1=81=D1=82=D0=B0=D0=BA=D0=B0=D0=BD=D1=8B=20=D0=BD?= =?UTF-8?q?=D0=B0=20=D1=81=D1=82=D0=BE=D0=BB=20=D0=B8=20=D0=BF=D1=80=D0=BE?= =?UTF-8?q?=D1=87=D1=83=D1=8E=20=D0=BF=D0=BE=D1=81=D1=83=D0=B4=D1=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- maps/sierra/machinery/machinery.dm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/maps/sierra/machinery/machinery.dm b/maps/sierra/machinery/machinery.dm index 6af5a93a6c3b7..d02e7a395f977 100644 --- a/maps/sierra/machinery/machinery.dm +++ b/maps/sierra/machinery/machinery.dm @@ -240,3 +240,25 @@ check_weapons = 1 //checks if it can shoot people that have a weapon they aren't authorized to have check_access = 1 //if this is active, the turret shoots everything that does not meet the access requirements req_access = list(access_bridge) + +// Fabricator overrides + +/datum/fabricator_recipe/medical/beaker + path = /obj/item/reagent_containers/glass/beaker + fabricator_types = list(FABRICATOR_CLASS_MICRO,FABRICATOR_CLASS_GENERAL) + +/datum/fabricator_recipe/medical/beaker_large + path = /obj/item/reagent_containers/glass/beaker/large + fabricator_types = list(FABRICATOR_CLASS_MICRO,FABRICATOR_CLASS_GENERAL) + +/datum/fabricator_recipe/medical/beaker_insul + path = /obj/item/reagent_containers/glass/beaker/insulated + fabricator_types = list(FABRICATOR_CLASS_MICRO,FABRICATOR_CLASS_GENERAL) + +/datum/fabricator_recipe/medical/beaker_insul_large + path = /obj/item/reagent_containers/glass/beaker/insulated/large + fabricator_types = list(FABRICATOR_CLASS_MICRO,FABRICATOR_CLASS_GENERAL) + +/datum/fabricator_recipe/medical/vial + path = /obj/item/reagent_containers/glass/beaker/vial + fabricator_types = list(FABRICATOR_CLASS_MICRO,FABRICATOR_CLASS_GENERAL)