From d8722c53565477ff9b26dbbf2f7476234df59862 Mon Sep 17 00:00:00 2001 From: aikaterna <20862007+aikaterna@users.noreply.github.com> Date: Wed, 10 Feb 2021 14:22:11 -0800 Subject: [PATCH] [CardsAgainstHumanity] Explain game joining --- cah/cah.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cah/cah.py b/cah/cah.py index c4812b8..53833be 100644 --- a/cah/cah.py +++ b/cah/cah.py @@ -1119,7 +1119,9 @@ class CardsAgainstHumanity(commands.Cog): task = self.bot.loop.create_task(self.checkCards(ctx, newGame)) self.games.append(newGame) # Tell the user they created a new game and list its ID - await ctx.send(f"You created game id: *{gameID}*") + msg = f"{ctx.author.name} created a Cards Against Humanity game with ID#: **{gameID}**\n" + msg += f"To join the game, type `{ctx.prefix}joincah {gameID}`" + await ctx.send(msg) await self.drawCards(ctx.author) # await self.showHand(ctx, ctx.author) # await self.nextPlay(ctx, newGame)