diff options
author | 2022-10-02 14:15:50 +0100 | |
---|---|---|
committer | 2022-10-02 14:18:07 +0100 | |
commit | c27763e08aeb94d1f0c6388ca420058e15d31820 (patch) | |
tree | 1b636e126a9b169b88d23d84d4762d4505570db6 /bot | |
parent | Fix position-only arg in hangman.py (diff) |
Fix position-only arg in madlibs.py
Diffstat (limited to 'bot')
-rw-r--r-- | bot/exts/fun/madlibs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/fun/madlibs.py b/bot/exts/fun/madlibs.py index 5f3e0572..075dde75 100644 --- a/bot/exts/fun/madlibs.py +++ b/bot/exts/fun/madlibs.py @@ -93,7 +93,7 @@ class Madlibs(commands.Cog): await original_message.edit(embed=madlibs_embed) try: - message = await self.bot.wait_for(event="message", check=author_check, timeout=TIMEOUT) + message = await self.bot.wait_for("message", check=author_check, timeout=TIMEOUT) except TimeoutError: timeout_embed = discord.Embed( title=choice(NEGATIVE_REPLIES), |