From 41d2af1dcb9c798d88e8fcf5d8b40e3c339b0e91 Mon Sep 17 00:00:00 2001 From: PrismaticGynoid Date: Fri, 13 Dec 2019 17:04:51 -0800 Subject: [PATCH] Drink fix (#6564) Fixes the Sex On The Beach drink being unable to be made by slightly altering the recipe - it's now made using the virgin version of the drink first, to prevent it from being interfered with by the Screwdriver recipe. --- code/modules/reagents/Chemistry-Recipes.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/reagents/Chemistry-Recipes.dm b/code/modules/reagents/Chemistry-Recipes.dm index b2bb2ec8c33..2255860547f 100644 --- a/code/modules/reagents/Chemistry-Recipes.dm +++ b/code/modules/reagents/Chemistry-Recipes.dm @@ -2478,13 +2478,13 @@ id = "virginsexonthebeach" result = "virginsexonthebeach" required_reagents = list("orangejuice" = 3, "grenadine" = 2) - result_amount = 4 + result_amount = 5 /datum/chemical_reaction/drinks/sexonthebeach name = "Sex On The Beach" id = "sexonthebeach" result = "sexonthebeach" - required_reagents = list("orangejuice" = 3, "grenadine" = 2, "vodka" = 1) + required_reagents = list("virginsexonthebeach" = 5, "vodka" = 1) result_amount = 6 /datum/chemical_reaction/drinks/eggnog