From 8f2d1cf1237d445f9fdadc10dd97af4eff287b3a Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Wed, 28 Jul 2021 22:57:05 +0200 Subject: [PATCH] [MIRROR] bless aware hud is no longer hardcoded for chaplains (#7143) * bless aware hud is no longer hardcoded for chaplains * Update alternate_appearance.dm Co-authored-by: Fikou <23585223+Fikou@users.noreply.github.com> Co-authored-by: Gandalf --- code/game/alternate_appearance.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/alternate_appearance.dm b/code/game/alternate_appearance.dm index 71ad1478565..32517436b96 100644 --- a/code/game/alternate_appearance.dm +++ b/code/game/alternate_appearance.dm @@ -166,7 +166,7 @@ GLOBAL_LIST_EMPTY(active_alternate_appearances) add_hud_to(mob) /datum/atom_hud/alternate_appearance/basic/blessed_aware/mobShouldSee(mob/M) - if(is_chaplain_job(M.mind?.assigned_role)) + if(M.mind?.holy_role) return TRUE if (istype(M, /mob/living/simple_animal/hostile/construct/wraith)) return TRUE