From 3cb2c338ac88c2190149baafce5d4e4952df4051 Mon Sep 17 00:00:00 2001 From: Dan Hess Date: Sat, 7 Nov 2020 15:26:18 -0600 Subject: [PATCH] Test print --- cogs/games.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cogs/games.py b/cogs/games.py index 891f995..685c8e2 100644 --- a/cogs/games.py +++ b/cogs/games.py @@ -54,6 +54,7 @@ class Games(commands.Cog): ) while True: + # Ensure only one game is happening at once game = self.running_games["shiritori"].get(ctx.channel.id) if game: return await ctx.send("Only one game per channel!") @@ -78,6 +79,7 @@ class Games(commands.Cog): # If we're here, then the last letter used was valid words_used.append(last_word) await message.add_reaction("✅") + print(words_used, last_letter, last_author, last_word) message = await ctx.bot.wait_for("message", check=check) # If we're here, game over, someone messed up