From 6fbb3262420b7d2166b52d6276eabacbd5094ff2 Mon Sep 17 00:00:00 2001 From: MoreRobustThanYou Date: Wed, 1 Nov 2017 08:12:48 -0400 Subject: [PATCH 1/2] Makes it so non-admins cannot activate the Ark (#32272) --- .../clock_structures/ark_of_the_clockwork_justicar.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/gamemodes/clock_cult/clock_structures/ark_of_the_clockwork_justicar.dm b/code/game/gamemodes/clock_cult/clock_structures/ark_of_the_clockwork_justicar.dm index 201ce11cf6..87d64eaefd 100644 --- a/code/game/gamemodes/clock_cult/clock_structures/ark_of_the_clockwork_justicar.dm +++ b/code/game/gamemodes/clock_cult/clock_structures/ark_of_the_clockwork_justicar.dm @@ -266,7 +266,7 @@ CHECK_TICK /obj/structure/destructible/clockwork/massive/celestial_gateway/attack_ghost(mob/user) - if(!user.client || !user.client.holder) + if(!IsAdminGhost(user)) return if(GLOB.servants_active) to_chat(user, "The Ark is already counting down.")