From 18d7b0e445251d7fde38c02e65f1802fa08b3a33 Mon Sep 17 00:00:00 2001 From: Iamgoofball Date: Tue, 6 May 2025 15:07:10 -0500 Subject: [PATCH] Heretics can see blessed tiles. (#91009) ## About The Pull Request Heretics can see blessed tiles. ## Why It's Good For The Game Heretics, being magic users, should be aware of anti-magic tile effects. ## Changelog :cl: qol: Heretics can see blessed tiles. /:cl: --- code/game/atom/alternate_appearance.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/atom/alternate_appearance.dm b/code/game/atom/alternate_appearance.dm index 3089f8d40b6..09b5c1190d1 100644 --- a/code/game/atom/alternate_appearance.dm +++ b/code/game/atom/alternate_appearance.dm @@ -195,7 +195,7 @@ GLOBAL_LIST_EMPTY(active_alternate_appearances) return TRUE if (istype(M, /mob/living/basic/construct/wraith)) return TRUE - if(isrevenant(M) || IS_WIZARD(M)) + if(isrevenant(M) || IS_WIZARD(M) || IS_HERETIC(M)) return TRUE return FALSE