This commit is contained in:
NikolajDanger
2023-03-30 14:45:37 +02:00
parent 098231bdeb
commit 8775e09589
3 changed files with 43 additions and 19 deletions

View File

@ -106,9 +106,9 @@ class WordleCog(commands.Cog):
self.bot = bot
@cog_ext.cog_subcommand(**params["wordle_start"])
async def wordle_start(self, ctx, letters = 5, hard = False):
async def wordle_start(self, ctx, letters = 5):
"""Start a game of wordle."""
await self.bot.games.wordle.start(ctx, letters, hard)
await self.bot.games.wordle.start(ctx, letters)
@cog_ext.cog_subcommand(**params["wordle_guess"])
async def wordle_guess(self, ctx, guess):