diff --git a/code/modules/mob/living/simple_animal/hostile/spider_queen.dm b/code/modules/mob/living/simple_animal/hostile/spider_queen.dm index 57ceff5ea16..6c98993036d 100644 --- a/code/modules/mob/living/simple_animal/hostile/spider_queen.dm +++ b/code/modules/mob/living/simple_animal/hostile/spider_queen.dm @@ -38,7 +38,6 @@ environment_smash = 2 pixel_x = -16 - pixel_y = -16 attack_emote = "skitters toward" emote_sounds = list('sound/effects/creatures/spider_critter.ogg') @@ -106,6 +105,7 @@ if(target_turf) S.visible_message("\The [S] lands on the [target_turf]!") for(var/mob/living/M in target_turf) - M.apply_damage(50, BRUTE) - M.apply_effect(6, STUN, blocked) + if(M != src) + M.apply_damage(50, BRUTE) + M.apply_effect(6, STUN, blocked) return TRUE \ No newline at end of file