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)