From 1d7470d6d827fbcbfb0b6e67fe4c8b751e82cdbd Mon Sep 17 00:00:00 2001 From: 1080pCat <96908085+1080pCat@users.noreply.github.com> Date: Sun, 27 Aug 2023 01:39:43 +1000 Subject: [PATCH] stay along side your dance floor! (#22121) --- .../mob/living/simple_animal/hostile/megafauna/hierophant.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/mob/living/simple_animal/hostile/megafauna/hierophant.dm b/code/modules/mob/living/simple_animal/hostile/megafauna/hierophant.dm index 8c952e5f48b..42c8456c6e9 100644 --- a/code/modules/mob/living/simple_animal/hostile/megafauna/hierophant.dm +++ b/code/modules/mob/living/simple_animal/hostile/megafauna/hierophant.dm @@ -316,6 +316,8 @@ Difficulty: Hard /mob/living/simple_animal/hostile/megafauna/hierophant/proc/blink(mob/victim) //blink to a target if(blinking || !victim) return + if(victim.z != z) + return var/turf/T = get_turf(victim) var/turf/source = get_turf(src) new /obj/effect/temp_visual/hierophant/telegraph(T, src)