From ba3f7ebaead7f63db45530173fb2099612466f0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juhani=20Krekel=C3=A4?= Date: Sun, 9 Jun 2019 21:52:23 +0300 Subject: [PATCH] Don't start a game with !join --- gameloop.py | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/gameloop.py b/gameloop.py index a063dd2..ecffc22 100644 --- a/gameloop.py +++ b/gameloop.py @@ -482,15 +482,7 @@ def game(send, notice, voice, devoice, get_event): return game_setup elif event == events.join: - nick = args[0] - - send('Started game, !join to join!') - - common_handler(event, args) - - start_game([]) - - return game_setup + send('Start a game with !start []') elif event == events.quit: return quit