From bc3daf803204de2a38fc513d1e5a463082735c74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juhani=20Krekel=C3=A4?= Date: Sun, 19 May 2019 18:05:39 +0300 Subject: [PATCH] =?UTF-8?q?Quiting=20=E2=86=92=20Quitting?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- gameloop.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gameloop.py b/gameloop.py index 9cd3bcc..7bf058b 100644 --- a/gameloop.py +++ b/gameloop.py @@ -504,7 +504,7 @@ def game(send, notice, voice, devoice, get_event): while True: if len(players) == 0: - send('Lost all players, quiting game setup') + send('Lost all players, quitting game setup') return no_game players_ready = set(i for i in players_ready if i in players.values()) @@ -988,7 +988,7 @@ def game(send, notice, voice, devoice, get_event): choosers = [i for i in choosers if i in players.values()] if len(players) < 2: - send('Not enough players to continue (needs at least two), quiting game') + send('Not enough players to continue (needs at least two), quitting game') return no_game if czar not in players.values(): @@ -1130,7 +1130,7 @@ def game(send, notice, voice, devoice, get_event): while True: if len(players) < 2: - send('Not enough players to continue (needs at least two), quiting game') + send('Not enough players to continue (needs at least two), quitting game') return no_game if czar not in players.values():