From 887c32e0bd63133803b29e4a9cafcadeaf1e147a Mon Sep 17 00:00:00 2001 From: Archie Date: Sat, 16 Jan 2021 22:36:21 -0300 Subject: [PATCH] Lipolicide overdose is too strong. --- .../reagents/chemistry/reagents/toxin_reagents.dm | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/code/modules/reagents/chemistry/reagents/toxin_reagents.dm b/code/modules/reagents/chemistry/reagents/toxin_reagents.dm index 9a32c834..87c29329 100644 --- a/code/modules/reagents/chemistry/reagents/toxin_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/toxin_reagents.dm @@ -611,13 +611,9 @@ /datum/reagent/toxin/lipolicide/overdose_process(mob/living/carbon/C) . = ..() - if(current_cycle >=41 && prob(15)) - C.spew_organ() - C.vomit(10, TRUE, TRUE, 4) - to_chat(C, "You feel something lumpy come up as you vomit.") - if(prob(1)) - to_chat(C, "You feel like your organs are on fire!") - C.IgniteMob() + if(current_cycle >=41 && prob(10)) + to_chat(C, "You feel like your organs are on fire!") + C.IgniteMob() /datum/reagent/toxin/lipolicide/on_mob_life(mob/living/carbon/M) if(M.nutrition <= NUTRITION_LEVEL_STARVING)