From 0959b2c82f36bd89d26e4c23372b1135eecb7c4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juhani=20Krekel=C3=A4?= Date: Sun, 19 May 2019 17:26:21 +0300 Subject: [PATCH] Add more details about minimum required amount of players --- gameloop.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gameloop.py b/gameloop.py index b462f4a..0abcb95 100644 --- a/gameloop.py +++ b/gameloop.py @@ -554,7 +554,7 @@ def game(send, notice, voice, devoice, get_event): if r is not None: return r if len(players) < 2: - send('Not enough players') + send('Not enough players (needs at least two joined). Try inviting others and send !ready again once they\'ve joined.') return game_setup else: return setup_round @@ -977,7 +977,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, quiting game') + send('Not enough players to continue (needs at least two), quiting game') return no_game if czar not in players.values(): @@ -1119,7 +1119,7 @@ def game(send, notice, voice, devoice, get_event): while True: if len(players) < 2: - send('Not enough players to continue, quiting game') + send('Not enough players to continue (needs at least two), quiting game') return no_game if czar not in players.values():