From fed8c754088b2b748c1927e081ec4ed031dfd126 Mon Sep 17 00:00:00 2001 From: Razgriz Date: Thu, 26 Jan 2023 02:02:40 -0700 Subject: [PATCH] Fix plastic feeder recipe so that it isn't under sofas (#5610) * Fix plastic feeder recipee so that it isn't under sofas * Update plastic_ch.dm * god please --- code/modules/materials/materials/plastic_ch.dm | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/code/modules/materials/materials/plastic_ch.dm b/code/modules/materials/materials/plastic_ch.dm index 9cf1a4b918..9af9475a20 100644 --- a/code/modules/materials/materials/plastic_ch.dm +++ b/code/modules/materials/materials/plastic_ch.dm @@ -1,9 +1,12 @@ /datum/material/plastic/generate_recipes() . = ..() + + recipes += list( + new /datum/stack_recipe("Feeder", /obj/machinery/feeder, 4, time = 20, one_per_turf = 1, on_floor = 1, recycle_material = "[name]"), + ) recipes += new/datum/stack_recipe_list("sofas", list( \ new /datum/stack_recipe("sofa middle", /obj/structure/bed/chair/sofa, 1, one_per_turf = 1, on_floor = 1, supplied_material = "[name]"), \ new /datum/stack_recipe("sofa left", /obj/structure/bed/chair/sofa/left, 1, one_per_turf = 1, on_floor = 1, supplied_material = "[name]"), \ new /datum/stack_recipe("sofa right", /obj/structure/bed/chair/sofa/right, 1, one_per_turf = 1, on_floor = 1, supplied_material = "[name]"), \ new /datum/stack_recipe("sofa corner", /obj/structure/bed/chair/sofa/corner, 1, one_per_turf = 1, on_floor = 1, supplied_material = "[name]"), \ - new /datum/stack_recipe("Feeder", /obj/machinery/feeder, 4, time = 20, one_per_turf = 1, on_floor = 1, recycle_material = "[name]"), \ - )) + ))