From 1d20d8b862835a343c107c59e4f489d7b41797db Mon Sep 17 00:00:00 2001 From: Sakimori Date: Sat, 26 Dec 2020 01:07:10 -0500 Subject: [PATCH] fixed a stray parenthese --- the_prestige.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/the_prestige.py b/the_prestige.py index e2fde2f..3e5bfc5 100644 --- a/the_prestige.py +++ b/the_prestige.py @@ -115,7 +115,7 @@ async def on_message(msg): elif command.startswith("startgame\n"): - if len(gamesarray > 45): + if len(gamesarray) > 45: await msg.channel.send("We're running 45 games and we doubt Discord will be happy with any more. These edit requests don't come cheap.") return @@ -140,7 +140,7 @@ async def on_message(msg): await game_task elif command.startswith("setupgame"): - if len(gamesarray > 45): + if len(gamesarray) > 45: await msg.channel.send("We're running 45 games and we doubt Discord will be happy with any more. These edit requests don't come cheap.") return