implement config re-loading

This commit is contained in:
2022-05-11 20:14:10 +02:00
parent a4b110773e
commit 793b25251c
9 changed files with 145 additions and 96 deletions

View File

@@ -283,7 +283,7 @@ public class GameRunner {
case Idle:
return !m_players.isEmpty() && to == Stage.Warmup;
case Warmup:
return to == Stage.Playing || to == Stage.Idle || to == Stage.Countdown ;
return to == Stage.Playing || to == Stage.Idle || to == Stage.Countdown;
case Countdown:
return to == Stage.Playing || to == Stage.Idle || to == Stage.Warmup;
case Playing: