From 9233bcffe3d4b72d065d0ea430eb0c9bb218fca1 Mon Sep 17 00:00:00 2001 From: Antoonij <42318445+Antoonij@users.noreply.github.com> Date: Mon, 15 Jul 2024 07:22:19 +0300 Subject: [PATCH] bugfix: Plastic reaction (#5407) --- code/modules/reagents/chemistry/recipes/others.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/reagents/chemistry/recipes/others.dm b/code/modules/reagents/chemistry/recipes/others.dm index 5966fdb7e7e..243c04f8ef3 100644 --- a/code/modules/reagents/chemistry/recipes/others.dm +++ b/code/modules/reagents/chemistry/recipes/others.dm @@ -102,7 +102,7 @@ result_amount = 1 /datum/chemical_reaction/plastic_polymers/on_reaction(datum/reagents/holder, created_volume) - new /obj/item/stack/sheet/plastic(get_turf(holder.my_atom), 10) + new /obj/item/stack/sheet/plastic(get_turf(holder.my_atom), created_volume * 10) /datum/chemical_reaction/lube name = "Space Lube"