From 20d6ae229b3e10e9164a2d7ea5fa39fa2e7b087e Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Wed, 15 Sep 2021 18:35:50 +0200 Subject: [PATCH] [MIRROR] Adds plates to the autolathe (#8202) * Adds plates to the autolathe (#61433) You can now print plates to eat food with or throw in tense situations. This is good for the game because the mechanic of vendor restocks is barely ever seen or used, getting more plates can be annoying because most people will take the plate and not leave it back when you leave food out on them, additionally you can print basically every other piece of dinnerware in an autolathe even cleavers if they're hacked, so there is no reason why you shouldn't be able to print a plate as well. * Adds plates to the autolathe Co-authored-by: Burgermancoding <79515258+Burgermancoding@users.noreply.github.com> --- 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 a07d8925b19..92917ee863c 100644 --- a/code/modules/research/designs/autolathe_designs.dm +++ b/code/modules/research/designs/autolathe_designs.dm @@ -403,6 +403,14 @@ build_path = /obj/item/storage/bag/tray category = list("initial","Dinnerware") +/datum/design/plate + name = "Plate" + id = "plate" + build_type = AUTOLATHE + materials = list(/datum/material/iron = 3500) + build_path = /obj/item/plate + category = list("initial","Dinnerware") + /datum/design/cafeteria_tray name = "Cafeteria Tray" id = "foodtray"