From f47c8b49279f83764883a2f492b3054013631f90 Mon Sep 17 00:00:00 2001 From: Will <7099514+Willburd@users.noreply.github.com> Date: Thu, 23 Jul 2026 14:59:12 -0400 Subject: [PATCH] incorrect check (#19626) --- 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 5d37556ff61..84eeceaf50c 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)