From 3c145f7507fbb5afc786fca517ab07383e00d844 Mon Sep 17 00:00:00 2001 From: azulez Date: Sun, 10 May 2026 03:52:27 -0400 Subject: [PATCH] Fixing Phlog recipe and Phlog fire after Phosphoric Acid addition introduced chemistry bug. (#31953) --- code/modules/reagents/chemistry/recipes/pyrotechnics.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/reagents/chemistry/recipes/pyrotechnics.dm b/code/modules/reagents/chemistry/recipes/pyrotechnics.dm index f68b52eee07..e7da4fe8164 100644 --- a/code/modules/reagents/chemistry/recipes/pyrotechnics.dm +++ b/code/modules/reagents/chemistry/recipes/pyrotechnics.dm @@ -213,8 +213,8 @@ name = "Phlogiston" id = "phlogiston" result = "phlogiston" - required_reagents = list("phosphorus" = 1, "plasma" = 1, "sacid" = 1, "stabilizing_agent" = 1) - result_amount = 4 + required_reagents = list("phosacid" = 1, "plasma" = 1, "stabilizing_agent" = 1) + result_amount = 3 mix_message = "The substance becomes sticky and extremely warm." /datum/chemical_reaction/phlogiston_dust @@ -230,7 +230,7 @@ name = "Phlogiston Fire" id = "phlogiston_fire" result = "phlogiston" - required_reagents = list("phosphorus" = 1, "plasma" = 1, "sacid" = 1) + required_reagents = list("phosacid" = 1, "plasma" = 1) mix_message = "The substance erupts into wild flames." /datum/chemical_reaction/phlogiston_fire/on_reaction(datum/reagents/holder, created_volume)