From 07ba4e8189d3334c60628bbfdf3fd16507df10e1 Mon Sep 17 00:00:00 2001 From: MoreRobustThanYou Date: Fri, 29 Dec 2017 03:53:59 -0500 Subject: [PATCH] The Radiance (eminence after ratvar awakens) can now ignore chapel tiles (#33873) --- code/game/gamemodes/clock_cult/clock_mobs/_eminence.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/gamemodes/clock_cult/clock_mobs/_eminence.dm b/code/game/gamemodes/clock_cult/clock_mobs/_eminence.dm index 5a8a40a544..926a9f1ad5 100644 --- a/code/game/gamemodes/clock_cult/clock_mobs/_eminence.dm +++ b/code/game/gamemodes/clock_cult/clock_mobs/_eminence.dm @@ -33,7 +33,7 @@ last_failed_turf = T to_chat(src, "This turf is consecrated and can't be crossed!") return - if(istype(get_area(T), /area/chapel)) + if(!GLOB.ratvar_awakens && istype(get_area(T), /area/chapel)) to_chat(src, "The Chapel is hallowed ground under a heretical deity, and can't be accessed!") return forceMove(T)