From f6d5644e864226781edaeaeee79356e3e1c8d89d Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Fri, 10 Dec 2021 22:52:41 +0100 Subject: [PATCH] [MIRROR] Pruno fermentation now properly consumes the mix [MDB IGNORE] (#9992) * fix (#63309) Co-authored-by: SuperNovaa41 * Pruno fermentation now properly consumes the mix Co-authored-by: Seth Scherer Co-authored-by: SuperNovaa41 --- code/modules/food_and_drinks/drinks/drinks/bottle.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/food_and_drinks/drinks/drinks/bottle.dm b/code/modules/food_and_drinks/drinks/drinks/bottle.dm index a622f7c2e59..be078f6e0f0 100644 --- a/code/modules/food_and_drinks/drinks/drinks/bottle.dm +++ b/code/modules/food_and_drinks/drinks/drinks/bottle.dm @@ -726,6 +726,7 @@ /obj/item/reagent_containers/food/drinks/bottle/pruno/proc/do_fermentation() fermentation_time_remaining = null fermentation_timer = null + reagents.remove_reagent(/datum/reagent/consumable/prunomix, 50) if(prob(10)) reagents.add_reagent(/datum/reagent/toxin/bad_food, 15) // closest thing we have to botulism reagents.add_reagent(/datum/reagent/consumable/ethanol/pruno, 35)