From 72ccbb01be1c8cf1f1b608219215cb798e4d801b Mon Sep 17 00:00:00 2001 From: eyespy <104491498+eyespy2222@users.noreply.github.com> Date: Wed, 8 Mar 2023 16:42:04 +1100 Subject: [PATCH] Mister Mann's mint toxin update! (RUN FATTIES) tweaks mint toxin to gib people more consistently by only gibbing people with TRAIT_BLOB. --- code/modules/reagents/chemistry/reagents/toxin_reagents.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/reagents/chemistry/reagents/toxin_reagents.dm b/code/modules/reagents/chemistry/reagents/toxin_reagents.dm index 1c69ecde..88e1338a 100644 --- a/code/modules/reagents/chemistry/reagents/toxin_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/toxin_reagents.dm @@ -135,7 +135,7 @@ pH = 8 /datum/reagent/toxin/minttoxin/on_mob_life(mob/living/carbon/M) - if(HAS_TRAIT(M, TRAIT_FAT)) + if(HAS_TRAIT(M, TRAIT_BLOB)) M.gib() return ..() @@ -623,7 +623,7 @@ M.nutrition = max(M.nutrition - 3, 0) // making the chef more valuable, one meme trap at a time else M.adjust_fatness(-10, FATTENING_TYPE_WEIGHT_LOSS) - + M.overeatduration = 0 return ..()