diff --git a/code/modules/mob/living/carbon/alien/humanoid/caste/hunter.dm b/code/modules/mob/living/carbon/alien/humanoid/caste/hunter.dm index 16fc1250c8..d87686c499 100644 --- a/code/modules/mob/living/carbon/alien/humanoid/caste/hunter.dm +++ b/code/modules/mob/living/carbon/alien/humanoid/caste/hunter.dm @@ -67,8 +67,6 @@ if(locate(/obj/effect/alien/weeds) in loc) if(health >= 150) adjustToxLoss(5) - if(getToxLoss() > max_plasma) - toxloss = max_plasma else adjustBruteLoss(-5) diff --git a/code/modules/mob/living/carbon/alien/humanoid/caste/sentinel.dm b/code/modules/mob/living/carbon/alien/humanoid/caste/sentinel.dm index 86e74cbe38..615db5677e 100644 --- a/code/modules/mob/living/carbon/alien/humanoid/caste/sentinel.dm +++ b/code/modules/mob/living/carbon/alien/humanoid/caste/sentinel.dm @@ -67,8 +67,6 @@ if(locate(/obj/effect/alien/weeds) in loc) if(health >= 125) adjustToxLoss(10) - if(getToxLoss() > max_plasma) - toxloss = max_plasma else adjustBruteLoss(-10) diff --git a/code/modules/mob/living/carbon/alien/humanoid/queen.dm b/code/modules/mob/living/carbon/alien/humanoid/queen.dm index 065b106068..99cd26a4b0 100644 --- a/code/modules/mob/living/carbon/alien/humanoid/queen.dm +++ b/code/modules/mob/living/carbon/alien/humanoid/queen.dm @@ -70,8 +70,6 @@ if(locate(/obj/effect/alien/weeds) in loc) if(health >= 250) adjustToxLoss(20) - if(getToxLoss() > max_plasma) - toxloss = max_plasma else bruteloss -= 5 adjustFireLoss(-5)