From f8d24f5141e12b223f037740838b559d8b59bcd6 Mon Sep 17 00:00:00 2001 From: Joan Lung Date: Wed, 8 Jun 2016 17:48:04 -0400 Subject: [PATCH] You can't make the Ark on a shuttle --- code/game/gamemodes/clock_cult/clock_scripture.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/game/gamemodes/clock_cult/clock_scripture.dm b/code/game/gamemodes/clock_cult/clock_scripture.dm index 1c34f1bf0ac..59f42960e48 100644 --- a/code/game/gamemodes/clock_cult/clock_scripture.dm +++ b/code/game/gamemodes/clock_cult/clock_scripture.dm @@ -1072,7 +1072,8 @@ Judgement: 10 servants, 100 CV, and any existing AIs are converted or destroyed tier = SCRIPTURE_JUDGEMENT /datum/clockwork_scripture/ark_of_the_clockwork_justiciar/check_special_requirements() - if(!slab.no_cost && invoker.z != ZLEVEL_STATION) + var/area/A = get_area(invoker) + if(!slab.no_cost && (invoker.z != ZLEVEL_STATION || istype(A, /area/shuttle))) invoker << "You must be on the station to activate the Ark!" return 0 if(!slab.no_cost && ticker.mode.clockwork_objective != "gateway")