From 19647e1c613d21125f4e2e321ea03387f11c84ed Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 17 Apr 2017 09:45:34 -0500 Subject: [PATCH] Cultists can no longer delay the shuttle after Nar'sie is summoned --- code/game/gamemodes/cult/cult_items.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/game/gamemodes/cult/cult_items.dm b/code/game/gamemodes/cult/cult_items.dm index a46074988d..8d87eeb4fc 100644 --- a/code/game/gamemodes/cult/cult_items.dm +++ b/code/game/gamemodes/cult/cult_items.dm @@ -281,6 +281,10 @@ if(curselimit > 1) to_chat(user, "We have exhausted our ability to curse the shuttle.") return + if(locate(/obj/singularity/narsie) in GLOB.poi_list) + to_chat(user, "Nar-Sie is already on this plane, there is no delaying the end of all things.") + return + if(SSshuttle.emergency.mode == SHUTTLE_CALL) var/cursetime = 1800 var/timer = SSshuttle.emergency.timeLeft(1) + cursetime