Hey, the lipolicide now removes fat. Welcome to Loss Station 13

This commit is contained in:
KabKebab
2022-02-10 18:35:58 +01:00
parent 2d29ea0603
commit 1c3e885cb7
@@ -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 ..()