From 76e7a62fe8e98aa2acfbff79f25db07c9d903402 Mon Sep 17 00:00:00 2001 From: CHOMPStation2StaffMirrorBot <94713762+CHOMPStation2StaffMirrorBot@users.noreply.github.com> Date: Thu, 23 Jul 2026 13:55:41 -0700 Subject: [PATCH] [MIRROR] Fix brainsnax logic (#12924) Co-authored-by: Will <7099514+Willburd@users.noreply.github.com> --- code/modules/reagents/reagents/food_drinks_vr.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/reagents/reagents/food_drinks_vr.dm b/code/modules/reagents/reagents/food_drinks_vr.dm index 5d37556ff6..84eeceaf50 100644 --- a/code/modules/reagents/reagents/food_drinks_vr.dm +++ b/code/modules/reagents/reagents/food_drinks_vr.dm @@ -551,7 +551,7 @@ /datum/reagent/nutriment/protein/brainzsnax/affect_ingest(mob/living/carbon/M, alien, removed) ..() - if(prob(5) && !(alien == IS_CHIMERA || alien == IS_SLIME || alien == IS_PLANT || alien == IS_DIONA || alien == IS_SHADEKIN && !M.isSynthetic())) + if(prob(5) && !(alien == IS_CHIMERA || alien == IS_SLIME || alien == IS_PLANT || alien == IS_DIONA || alien == IS_SHADEKIN) && !M.isSynthetic()) M.adjustBrainLoss(removed) //Any other species risks prion disease. M.Confuse(5) M.hallucination = max(M.hallucination, 25)