From 81fa49b27ff4e8c646561f0b5dbaa83ce3d1df99 Mon Sep 17 00:00:00 2001 From: Sinestia <40812746+Sinestia@users.noreply.github.com> Date: Thu, 14 Jul 2022 17:19:32 -0500 Subject: [PATCH] Makes plastic output vary based on inputs (#18359) * Plastic is no longer a fixed-output reaction * Buff plastic --- code/modules/reagents/chemistry/recipes/others.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/modules/reagents/chemistry/recipes/others.dm b/code/modules/reagents/chemistry/recipes/others.dm index e0f9b41e01c..7616f18b23e 100644 --- a/code/modules/reagents/chemistry/recipes/others.dm +++ b/code/modules/reagents/chemistry/recipes/others.dm @@ -99,12 +99,12 @@ result = null required_reagents = list("oil" = 5, "sacid" = 2, "ash" = 3) min_temp = T0C + 100 - result_amount = 1 + result_amount = 10 /datum/chemical_reaction/plastic_polymers/on_reaction(datum/reagents/holder, created_volume) - var/obj/item/stack/sheet/plastic/P = new /obj/item/stack/sheet/plastic - P.amount = 10 - P.forceMove(get_turf(holder.my_atom)) + var/loc = get_turf(holder.my_atom) + for(var/i in 1 to created_volume) + new /obj/item/stack/sheet/plastic(loc) /datum/chemical_reaction/lube name = "Space Lube"