Fixes delay start giving the wrong message

This commit is contained in:
MrStonedOne
2015-04-29 02:51:10 -07:00
parent 702181e605
commit ccf90332c2

View File

@@ -639,7 +639,7 @@ var/global/floorIsLava = 0
if(ticker.current_state > GAME_STATE_PREGAME)
return alert("Too late... The game has already started!")
ticker.delay_start = !ticker.delay_start
if(!ticker.delay_start)
if(ticker.delay_start)
world << "<b>The game start has been delayed.</b>"
log_admin("[key_name(usr)] delayed the game.")
else