From f3a371bf0297a76a31175e1a95e494be46ed627b Mon Sep 17 00:00:00 2001 From: Alberyk Date: Sun, 23 Aug 2020 00:16:06 -0300 Subject: [PATCH] Spider queen fixes (#9752) --- .../mob/living/simple_animal/hostile/spider_queen.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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