From 5dbc65952fb3c2dc4101e60a8bb4bf6c006fa8e4 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Fri, 14 Jan 2022 00:04:36 +0100 Subject: [PATCH] [MIRROR] Fixes null rod carp plushie [MDB IGNORE] (#10677) * Fixes null rod carp plushie (#64038) * Fixes null rod carp plushie Co-authored-by: Bond <58570888+TheBonded@users.noreply.github.com> --- code/datums/components/faction_granter.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/components/faction_granter.dm b/code/datums/components/faction_granter.dm index 79cfd2aa4d5..cbc9542e517 100644 --- a/code/datums/components/faction_granter.dm +++ b/code/datums/components/faction_granter.dm @@ -46,7 +46,7 @@ if(used) to_chat(user, span_warning("The power of [parent] has been used up!")) return - if(user.mind?.holy_role >= holy_role_required) + if(user.mind?.holy_role < holy_role_required) to_chat(user, span_warning("You are not holy enough to invoke the power of [parent]!")) return