diff options
author | 2021-05-15 12:53:00 -0400 | |
---|---|---|
committer | 2021-05-15 12:53:00 -0400 | |
commit | 55d472a97efea392b4eb2b198ffa6f5f5026072d (patch) | |
tree | d906bac511932bc33adba099efbcf9904c46dac3 /bot/exts/evergreen/battleship.py | |
parent | chore: 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.py | 2 |
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) |