diff --git a/code/modules/mob/living/simple_animal/hostile/terror_spiders/actions.dm b/code/modules/mob/living/simple_animal/hostile/terror_spiders/actions.dm index 91ff4cbb53e..d041f50322a 100644 --- a/code/modules/mob/living/simple_animal/hostile/terror_spiders/actions.dm +++ b/code/modules/mob/living/simple_animal/hostile/terror_spiders/actions.dm @@ -141,8 +141,8 @@ if(Proj.damage_type != BRUTE && Proj.damage_type != BURN) visible_message("[src] is undamaged by [Proj]!") // Webs don't care about disablers, tasers, etc. Or toxin damage. They're organic, but not alive. - else - ..() + return + ..() // ---------- WRAP diff --git a/code/modules/mob/living/simple_animal/hostile/terror_spiders/chem.dm b/code/modules/mob/living/simple_animal/hostile/terror_spiders/chem.dm index 1b67c074b22..366d28a32a3 100644 --- a/code/modules/mob/living/simple_animal/hostile/terror_spiders/chem.dm +++ b/code/modules/mob/living/simple_animal/hostile/terror_spiders/chem.dm @@ -45,6 +45,7 @@ /datum/reagent/terror_queen_toxin/on_mob_life(mob/living/M) // make them hallucinate a lot, like a changeling sting - M.hallucination = min(400, M.hallucination+50) + if(M.hallucination < 400) + M.Hallucinate(50)