From 82d0b15e6891e00585e036574f7dcc2f268d93b0 Mon Sep 17 00:00:00 2001 From: Cognition Date: Fri, 22 Jul 2022 23:35:15 -0600 Subject: [PATCH] Fixes hierophant walls letting non-casters pass through them --- .../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 04967f081d..086155d9a5 100644 --- a/code/modules/mob/living/simple_animal/hostile/megafauna/hierophant.dm +++ b/code/modules/mob/living/simple_animal/hostile/megafauna/hierophant.dm @@ -500,6 +500,8 @@ Difficulty: Normal var/obj/item/projectile/P = mover if(P.firer == caster) return TRUE + if(mover != caster) + return FALSE if(mover == caster) return TRUE