aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/evergreen/connect_four.py
diff options
context:
space:
mode:
authorGravatar ToxicKidz <[email protected]>2021-05-15 12:53:00 -0400
committerGravatar ToxicKidz <[email protected]>2021-05-15 12:53:00 -0400
commit55d472a97efea392b4eb2b198ffa6f5f5026072d (patch)
treed906bac511932bc33adba099efbcf9904c46dac3 /bot/exts/evergreen/connect_four.py
parentchore: Update myvalenstate.py (diff)
chore: Make all aliases in commands tuples
Diffstat (limited to 'bot/exts/evergreen/connect_four.py')
-rw-r--r--bot/exts/evergreen/connect_four.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/exts/evergreen/connect_four.py b/bot/exts/evergreen/connect_four.py
index 7a39d442..5c82ffee 100644
--- a/bot/exts/evergreen/connect_four.py
+++ b/bot/exts/evergreen/connect_four.py
@@ -365,7 +365,7 @@ class ConnectFour(commands.Cog):
@guild_only()
@commands.group(
invoke_without_command=True,
- aliases=["4inarow", "connect4", "connectfour", "c4"],
+ aliases=("4inarow", "connect4", "connectfour", "c4"),
case_insensitive=True
)
async def connect_four(
@@ -428,7 +428,7 @@ class ConnectFour(commands.Cog):
await self._play_game(ctx, user, board_size, str(emoji1), str(emoji2))
@guild_only()
- @connect_four.command(aliases=["bot", "computer", "cpu"])
+ @connect_four.command(aliases=("bot", "computer", "cpu"))
async def ai(
self,
ctx: commands.Context,