From 33d2ea51fca017dd4ce9f9135d80d94a09a2d5bc Mon Sep 17 00:00:00 2001 From: carshalash Date: Mon, 7 Mar 2022 16:37:55 +1000 Subject: [PATCH] #64812 typo fixes (#65227) I accidentally typed the wrong value to one of the drinks (Should be the total of all used reagents) and a c in caramel. Typoes are embarrassing and them being fixed is good. --- code/modules/food_and_drinks/recipes/drinks_recipes.dm | 2 +- code/modules/reagents/chemistry/reagents/drink_reagents.dm | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/food_and_drinks/recipes/drinks_recipes.dm b/code/modules/food_and_drinks/recipes/drinks_recipes.dm index 3042f834c88..e014e45a690 100644 --- a/code/modules/food_and_drinks/recipes/drinks_recipes.dm +++ b/code/modules/food_and_drinks/recipes/drinks_recipes.dm @@ -749,7 +749,7 @@ required_reagents = list(/datum/reagent/consumable/sol_dry = 2, /datum/reagent/consumable/grenadine = 1) /datum/chemical_reaction/drink/agua_fresca - results = list(/datum/reagent/consumable/agua_fresca = 3) + results = list(/datum/reagent/consumable/agua_fresca = 10) required_reagents = list(/datum/reagent/consumable/watermelonjuice = 4, /datum/reagent/consumable/ice = 1, /datum/reagent/water = 2, /datum/reagent/consumable/limejuice = 2, /datum/reagent/consumable/menthol = 1) /datum/chemical_reaction/drink/cinderella diff --git a/code/modules/reagents/chemistry/reagents/drink_reagents.dm b/code/modules/reagents/chemistry/reagents/drink_reagents.dm index bac6907088b..71e3ab6b4c9 100644 --- a/code/modules/reagents/chemistry/reagents/drink_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/drink_reagents.dm @@ -809,7 +809,7 @@ quality = DRINK_VERYGOOD taste_description = "sweet tangy fruit" glass_icon_state = "cinderella" - glass_name = "Cinderlla" + glass_name = "Cinderella" glass_desc = "There is not a single drop of alcohol in this thing." chemical_flags = REAGENT_CAN_BE_SYNTHESIZED @@ -857,7 +857,7 @@ /datum/reagent/consumable/caramelshake name = "Caramel Shake" - description = "A aramel flavored milkshake. Your teeth hurt looking at it." + description = "A caramel flavored milkshake. Your teeth hurt looking at it." color = "#E17C00" quality = DRINK_GOOD nutriment_factor = 10 * REAGENTS_METABOLISM