From 701ea98e6dde1bdc83c720961c6d4483b8b52973 Mon Sep 17 00:00:00 2001 From: Miniature Date: Fri, 23 Dec 2011 19:14:58 +1030 Subject: [PATCH] Fixed a vote runtime, hopefully this makes it delay start (probably won't tho) --- code/game/vote.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/vote.dm b/code/game/vote.dm index 3646fb2b09d..2c3b57034bc 100644 --- a/code/game/vote.dm +++ b/code/game/vote.dm @@ -275,7 +275,7 @@ if(config.allow_vote_restart) text += "Begin restart vote.
" if(config.allow_vote_mode) - if(ticker.current_state == 1) + if(!ticker || ticker.current_state == 1) text += "Begin change mode vote.
" else text += "Change mode votes are disabled while a round is in progress, vote to restart first.
"