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/recommend_game.py | |
| parent | chore: Update myvalenstate.py (diff) | |
chore: Make all aliases in commands tuples
Diffstat (limited to 'bot/exts/evergreen/recommend_game.py')
| -rw-r--r-- | bot/exts/evergreen/recommend_game.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/bot/exts/evergreen/recommend_game.py b/bot/exts/evergreen/recommend_game.py index 56596020..45108969 100644 --- a/bot/exts/evergreen/recommend_game.py +++ b/bot/exts/evergreen/recommend_game.py @@ -25,7 +25,7 @@ class RecommendGame(commands.Cog):          self.bot = bot          self.index = 0 -    @commands.command(name="recommendgame", aliases=["gamerec"]) +    @commands.command(name="recommendgame", aliases=("gamerec",))      async def recommend_game(self, ctx: commands.Context) -> None:          """Sends an Embed of a random game recommendation."""          if self.index >= len(game_recs): | 
