diff --git a/code/modules/virus2/effect.dm b/code/modules/virus2/effect.dm index 48dbafde0b8..28cbaacac54 100644 --- a/code/modules/virus2/effect.dm +++ b/code/modules/virus2/effect.dm @@ -251,7 +251,8 @@ if(istype(mob, /mob/living/carbon/human)) var/mob/living/carbon/human/H = mob var/datum/organ/internal/brain/B = H.internal_organs["brain"] - B.take_damage(5) + if (B.damage < B.min_broken_damage) + B.take_damage(5) else mob.setBrainLoss(50)