From bb613ef09e03a76c288bc50dc8e358b018d2d72d Mon Sep 17 00:00:00 2001 From: Dorsisdwarf Date: Sun, 11 Jun 2023 14:58:50 +0100 Subject: [PATCH] Creamy tomato soup, soup-free chili. (#75971) i tried to make chili and it made 50% tomato soup immersion RUINED ## About The Pull Request Adds 5u of cream to the recipe for tomato soup. This means that tomatosoup is no longer produced as an unavoidable byproduct of all soup recipes that include a tomato when making more than one serving. ## Why It's Good For The Game Fixes #75886 , makes soup tastier ## Changelog :cl: fix: Nanotrasen Cookery Command has ended the plague of staff complaining that their tomato dishes are just complicated forms of soup by redefining "tomato soup" to include a dash of cream. /:cl: --- code/modules/food_and_drinks/recipes/soup_mixtures.dm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/code/modules/food_and_drinks/recipes/soup_mixtures.dm b/code/modules/food_and_drinks/recipes/soup_mixtures.dm index 854d1211364..ae73013a1b0 100644 --- a/code/modules/food_and_drinks/recipes/soup_mixtures.dm +++ b/code/modules/food_and_drinks/recipes/soup_mixtures.dm @@ -551,7 +551,10 @@ drink_type = VEGETABLES | FRUIT // ?? /datum/chemical_reaction/food/soup/tomatosoup - required_reagents = list(/datum/reagent/water = 50) + required_reagents = list( + /datum/reagent/water = 50, + /datum/reagent/consumable/cream = 5 + ) required_ingredients = list( /obj/item/food/grown/tomato = 2, )