diff --git a/gameloop.py b/gameloop.py index b51df40..a1afd74 100644 --- a/gameloop.py +++ b/gameloop.py @@ -570,6 +570,7 @@ def game(send, notice, voice, devoice, get_event): if len(players) < 2: send('Not enough players to continue, quiting game') + return no_game if czar not in players.values(): send('Czar left the game, restarting round') @@ -691,6 +692,7 @@ def game(send, notice, voice, devoice, get_event): while True: if len(players) < 2: send('Not enough players to continue, quiting game') + return no_game if czar not in players.values(): send('Czar left the game, restarting round')