Merge pull request #15721 from BlueWildrose/hierophantwalls

Fixes hierophant walls letting non-casters pass through them.
This commit is contained in:
Lin
2022-07-24 05:38:19 +00:00
committed by GitHub

View File

@@ -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