From 362afcd70d81aca038849ef3bcfc3c6fd1376766 Mon Sep 17 00:00:00 2001 From: Kyle Spier-Swenson Date: Sun, 5 Feb 2017 19:36:44 -0800 Subject: [PATCH] fixes ctf being a butt (#23709) --- code/modules/awaymissions/capture_the_flag.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/awaymissions/capture_the_flag.dm b/code/modules/awaymissions/capture_the_flag.dm index 79b6c1d43e4..86d08ebf1f8 100644 --- a/code/modules/awaymissions/capture_the_flag.dm +++ b/code/modules/awaymissions/capture_the_flag.dm @@ -193,7 +193,7 @@ /obj/machinery/capture_the_flag/attack_ghost(mob/user) if(ctf_enabled == FALSE) return - if(ticker.current_state != GAME_STATE_PLAYING) + if(ticker.current_state < GAME_STATE_PLAYING) return if(user.ckey in team_members) if(user.ckey in recently_dead_ckeys)