From b93fffba64d1af45787a4fcffa1c8e2593cc7d3f Mon Sep 17 00:00:00 2001 From: Sakimori Date: Thu, 31 Dec 2020 03:53:59 -0500 Subject: [PATCH] removed the 10 team limit --- the_prestige.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/the_prestige.py b/the_prestige.py index c7da63f..512f20d 100644 --- a/the_prestige.py +++ b/the_prestige.py @@ -147,10 +147,6 @@ class StartGameCommand(Command): channel = msg.channel user_mention = msg.author.mention await msg.delete() - if len(gamesarray) >= 10: - await channel.send(f"We're running 10 games right now, and Discord probably isn't very pleased about it. You're at #{len(gamesqueue)+1} in the list.\nWe'll ping you when it's ready, chief.") - gamesqueue.append((channel, game, user_mention)) - return game_task = asyncio.create_task(watch_game(channel, game, user=msg.author)) await game_task