From 3795369849f65eb84b004a4e988b5a56ef5733a9 Mon Sep 17 00:00:00 2001 From: Joan Lung Date: Wed, 4 Jan 2017 11:49:24 -0500 Subject: [PATCH] You actually have to make the Ark on the station --- .../clock_cult/clock_scriptures/scripture_judgement.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/gamemodes/clock_cult/clock_scriptures/scripture_judgement.dm b/code/game/gamemodes/clock_cult/clock_scriptures/scripture_judgement.dm index 974c9aca7a5..53f77ed69ac 100644 --- a/code/game/gamemodes/clock_cult/clock_scriptures/scripture_judgement.dm +++ b/code/game/gamemodes/clock_cult/clock_scriptures/scripture_judgement.dm @@ -39,7 +39,7 @@ return FALSE var/area/A = get_area(invoker) var/turf/T = get_turf(invoker) - if(!T || T.z != ZLEVEL_STATION || istype(A, /area/shuttle)) + if(!T || T.z != ZLEVEL_STATION || istype(A, /area/shuttle) || !A.blob_allowed) invoker << "You must be on the station to activate the Ark!" return FALSE if(clockwork_gateway_activated)