From 1b743b982e4e3bf06f6b368df37ce83b3a8fe237 Mon Sep 17 00:00:00 2001 From: aikaterna Date: Sat, 4 Mar 2017 19:13:57 -0800 Subject: [PATCH] Change commands to not clash with existing commands --- cah/cah.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cah/cah.py b/cah/cah.py index fcc39da..59418ad 100644 --- a/cah/cah.py +++ b/cah/cah.py @@ -873,7 +873,7 @@ class CardsAgainstHumanity: @commands.command(pass_context=True) - async def say(self, ctx, *, message = None): + async def chat(self, ctx, *, message = None): """Broadcasts a message to the other players in your game.""" if not await self.checkPM(ctx.message): return @@ -1208,7 +1208,7 @@ class CardsAgainstHumanity: @commands.command(pass_context=True) - async def addbot(self, ctx): + async def joinbot(self, ctx): """Adds a bot to the game. Can only be done by the player who created the game.""" if not await self.checkPM(ctx.message): return @@ -1265,7 +1265,7 @@ class CardsAgainstHumanity: @commands.command(pass_context=True) - async def addbots(self, ctx, number = None): + async def joinbots(self, ctx, number = None): """Adds bots to the game. Can only be done by the player who created the game.""" if not await self.checkPM(ctx.message): return