From f18c8bfa0a5cb7e95b04cadea8986c294a8d2851 Mon Sep 17 00:00:00 2001 From: Rykka Date: Sun, 26 Jul 2020 00:17:27 -0400 Subject: [PATCH] Fix batter and all subtypes of it being unmake-able. Add water or beer BEFORE adding egg + flour together to avoid messing it up. --- code/modules/reagents/Chemistry-Recipes.dm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/code/modules/reagents/Chemistry-Recipes.dm b/code/modules/reagents/Chemistry-Recipes.dm index 8074d45972..f5f4d17587 100644 --- a/code/modules/reagents/Chemistry-Recipes.dm +++ b/code/modules/reagents/Chemistry-Recipes.dm @@ -1331,6 +1331,7 @@ id = "dough" result = null required_reagents = list("egg" = 3, "flour" = 10) + inhibitors = list("water" = 1, "beer" = 1) //To prevent it messing with batter recipes result_amount = 1 /datum/chemical_reaction/food/dough/on_reaction(var/datum/reagents/holder, var/created_volume) @@ -2625,8 +2626,6 @@ Aurora Food ==================== */ -/datum/chemical_reaction/dough - inhibitors = list("water" = 1, "beer" = 1) //To prevent it messing with batter recipes /datum/chemical_reaction/coating/batter name = "Batter"