From 4bcc5ec791d78138934a1ad5c930c1454d47438d Mon Sep 17 00:00:00 2001 From: carnie Date: Wed, 7 Jan 2015 17:13:23 +0000 Subject: [PATCH] Resolves #6864 - Sets ticker can_fire=1 inside the start_now verb. --- code/modules/admin/admin.dm | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/code/modules/admin/admin.dm b/code/modules/admin/admin.dm index bbe55e693c4..7f2d0ee9a1e 100644 --- a/code/modules/admin/admin.dm +++ b/code/modules/admin/admin.dm @@ -578,10 +578,8 @@ var/global/floorIsLava = 0 set category = "Server" set desc="Start the round RIGHT NOW" set name="Start Now" - if(!ticker) - alert("Unable to start the game as it is not set up.") - return if(ticker.current_state == GAME_STATE_PREGAME) + ticker.can_fire = 1 ticker.current_state = GAME_STATE_SETTING_UP log_admin("[usr.key] has started the game.") message_admins("[usr.key] has started the game.")