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 16fc1250c8b..d87686c499c 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 86e74cbe38b..615db5677ef 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 065b1060685..99cd26a4b01 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)