From 97794c2e828bcbab2179cf44b8f6c6dc6e612a62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juhani=20Krekel=C3=A4?= Date: Tue, 7 May 2019 11:42:40 +0300 Subject: [PATCH] Don't shout about !starting if ppl leave the chan --- gameloop.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gameloop.py b/gameloop.py index 42f40eb..23bda90 100644 --- a/gameloop.py +++ b/gameloop.py @@ -5,6 +5,7 @@ from collections import namedtuple import cardcast_api # TODO: rando +# TODO: !kick class events(enum.Enum): quit, nick_change, status, start, ready, unready, kill, join, leave, players, deck_add, deck_add_random, deck_remove, deck_list, limit, card, cards, origins = range(18) @@ -342,7 +343,7 @@ def game(send, notice, voice, devoice, get_event): return quit else: - send('Start with !start') + pass def game_setup(): nonlocal players