Start the game immediately if the user specifies to restart in 0 seconds.

git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@450 c613c5cb-e716-0410-b11b-feb51c14d237
This commit is contained in:
Ray Greenwell
2007-10-15 18:28:40 +00:00
parent 1fca67a044
commit e8bd79d1e3
@@ -178,6 +178,12 @@ public class EZGameManager extends GameManager
}
}
}.schedule(seconds * 1000L);
} else {
// start immediately
if (_ezObj.isActive()) {
startGame();
}
}
}