From 5138ab09b2b840ec10572db291547d2eb969b58b Mon Sep 17 00:00:00 2001 From: mochi Date: Sun, 31 May 2020 19:00:45 +0200 Subject: [PATCH] #13493: Nitroglycerin chemical reaction no longer yields reagent The nitroglycerin reaction causes the explosion which is fine, but it also tries to generate a reagent of the same name, which doesn't exist. This commit prevents reaction from trying to spawn the reagent. --- code/modules/reagents/chemistry/recipes/pyrotechnics.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/reagents/chemistry/recipes/pyrotechnics.dm b/code/modules/reagents/chemistry/recipes/pyrotechnics.dm index f2740676314..b188afd968c 100644 --- a/code/modules/reagents/chemistry/recipes/pyrotechnics.dm +++ b/code/modules/reagents/chemistry/recipes/pyrotechnics.dm @@ -56,7 +56,7 @@ /datum/chemical_reaction/nitroglycerin name = "Nitroglycerin" id = "nitroglycerin" - result = "nitroglycerin" + result = null required_reagents = list("glycerol" = 1, "facid" = 1, "sacid" = 1) result_amount = 2