diff --git a/code/game/objects/items/weapons/holy_weapons.dm b/code/game/objects/items/weapons/holy_weapons.dm
index 9a0ca77089d..88474abbd7c 100644
--- a/code/game/objects/items/weapons/holy_weapons.dm
+++ b/code/game/objects/items/weapons/holy_weapons.dm
@@ -426,7 +426,7 @@
if(!iscarbon(M))
return ..()
- if(!user.mind || (user.mind.assigned_role != "Chaplain" && user.mind.special_role != SPECIAL_ROLE_ERT))
+ if(!user.mind || !user.mind.isholy)
to_chat(user, "You are not close enough with [ticker.Bible_deity_name] to use [src].")
return
@@ -488,7 +488,7 @@
/obj/item/nullrod/salt/attack_self(mob/user)
- if(!user.mind || (user.mind.assigned_role != "Chaplain" && user.mind.special_role != SPECIAL_ROLE_ERT ))
+ if(!user.mind || !user.mind.isholy)
to_chat(user, "You are not close enough with [ticker.Bible_deity_name] to use [src].")
return