aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/evergreen/battleship.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/battleship.py
parentchore: Update myvalenstate.py (diff)
chore: Make all aliases in commands tuples
Diffstat (limited to 'bot/exts/evergreen/battleship.py')
-rw-r--r--bot/exts/evergreen/battleship.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/evergreen/battleship.py b/bot/exts/evergreen/battleship.py
index d4584ae8..27c50bdb 100644
--- a/bot/exts/evergreen/battleship.py
+++ b/bot/exts/evergreen/battleship.py
@@ -434,7 +434,7 @@ class Battleship(commands.Cog):
self.games.remove(game)
raise
- @battleship.command(name="ships", aliases=["boats"])
+ @battleship.command(name="ships", aliases=("boats",))
async def battleship_ships(self, ctx: commands.Context) -> None:
"""Lists the ships that are found on the battleship grid."""
embed = discord.Embed(colour=Colours.blue)