From 1c3e885cb7fb654f6c09b1355ed65c51db6afd75 Mon Sep 17 00:00:00 2001 From: KabKebab Date: Thu, 10 Feb 2022 18:35:58 +0100 Subject: [PATCH] Hey, the lipolicide now removes fat. Welcome to Loss Station 13 --- code/modules/reagents/chemistry/reagents/toxin_reagents.dm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/code/modules/reagents/chemistry/reagents/toxin_reagents.dm b/code/modules/reagents/chemistry/reagents/toxin_reagents.dm index 0a57d5b7..c9be477f 100644 --- a/code/modules/reagents/chemistry/reagents/toxin_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/toxin_reagents.dm @@ -619,7 +619,9 @@ /datum/reagent/toxin/lipolicide/on_mob_life(mob/living/carbon/M) if(M.nutrition <= NUTRITION_LEVEL_STARVING) M.adjustToxLoss(1*REM, 0) - M.nutrition = max(M.nutrition - 3, 0) // making the chef more valuable, one meme trap at a time + M.fatness = max(M.fatness - 3, 0) + if(M.fatness == 0) + M.nutrition = max(M.nutrition - 3, 0) // making the chef more valuable, one meme trap at a time M.overeatduration = 0 return ..()