From 158096494449676b9003b2be4b76c8abb7bc027e Mon Sep 17 00:00:00 2001 From: carshalash Date: Sat, 7 Dec 2019 19:18:32 +1000 Subject: [PATCH] Hot coco is now made with milk as it should be (#48124) Who the fuck make hot coco with water? Fuck you, we use milk on this station. cl fix: Makes Hot Coco actually consumable /cl --- code/modules/food_and_drinks/recipes/food_mixtures.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/food_and_drinks/recipes/food_mixtures.dm b/code/modules/food_and_drinks/recipes/food_mixtures.dm index e33a0007813..7ae3a847a4a 100644 --- a/code/modules/food_and_drinks/recipes/food_mixtures.dm +++ b/code/modules/food_and_drinks/recipes/food_mixtures.dm @@ -49,7 +49,8 @@ name = "Hot Coco" id = /datum/reagent/consumable/hot_coco results = list(/datum/reagent/consumable/hot_coco = 5) - required_reagents = list(/datum/reagent/water = 5, /datum/reagent/consumable/coco = 1) + required_reagents = list(/datum/reagent/consumable/milk = 5, /datum/reagent/consumable/coco = 1) + required_temp = 320 /datum/chemical_reaction/coffee name = "Coffee"