Increase starting round countdown to 4 seconds

This gives me enough time to display "GO" on the board before players start moving
This commit is contained in:
Liam Westby 2018-06-03 17:30:48 -05:00
parent 721a9e360a
commit 809655233c

View File

@ -44,7 +44,7 @@ public class GameRound implements Runnable {
private static final int GAME_TICK_SPEED_DEFAULT = 50; // ms
private static final int DELAY_BETWEEN_ROUNDS = 5; //ticks
private static final int STARTING_COUNTDOWN = 3; // seconds
private static final int STARTING_COUNTDOWN = 4; // seconds
private static final int MAX_TIME_BETWEEN_ROUNDS_DEFAULT = 20; // seconds
private static final int FULL_GAME_TIME_BETWEEN_ROUNDS = 5; //seconds
private static final Random r = new Random();