From 1e103f43958d90c8a979a8b232be12447be642ec Mon Sep 17 00:00:00 2001 From: Killian <49700375+KillianKirilenko@users.noreply.github.com> Date: Thu, 23 Mar 2023 02:25:24 +0000 Subject: [PATCH] Update dispenser.dm remove debug/testing output --- code/modules/reagents/reagents/dispenser.dm | 1 - 1 file changed, 1 deletion(-) diff --git a/code/modules/reagents/reagents/dispenser.dm b/code/modules/reagents/reagents/dispenser.dm index 55fc587f78..9602c36df9 100644 --- a/code/modules/reagents/reagents/dispenser.dm +++ b/code/modules/reagents/reagents/dispenser.dm @@ -161,7 +161,6 @@ if(M.isSynthetic() && M.nutrition < 500 && M.species.robo_ethanol_proc) M.adjust_nutrition(round(max(0,80 - strength) * removed)/30) //the stronger it is, the more juice you gain; really weak stuff gets you nothing - to_world("[M] gained [round(max(0,80-strength))] multiplied by [removed], divided by 30 = [round(max(0,80 - strength) * removed)/30] nutrition this processing tick.") var/effective_dose = dose * M.species.chem_strength_alcohol if(!effective_dose)