aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/fun/hangman.py
diff options
context:
space:
mode:
authorGravatar wookie184 <[email protected]>2022-10-02 15:25:30 +0100
committerGravatar GitHub <[email protected]>2022-10-02 15:25:30 +0100
commit4a13e3a500595ea4bcf4234f2f2e4656ca857cdb (patch)
tree1b636e126a9b169b88d23d84d4762d4505570db6 /bot/exts/fun/hangman.py
parentBump rapidfuzz from 2.10.1 to 2.10.2 (#1105) (diff)
parentFix position-only arg in madlibs.py (diff)
Merge pull request #1110 from python-discord/fix-issue-1106
Fix position-only arg in hangman & madlibs command.
Diffstat (limited to 'bot/exts/fun/hangman.py')
-rw-r--r--bot/exts/fun/hangman.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/fun/hangman.py b/bot/exts/fun/hangman.py
index 6c4ed69c..f385a955 100644
--- a/bot/exts/fun/hangman.py
+++ b/bot/exts/fun/hangman.py
@@ -110,7 +110,7 @@ class Hangman(commands.Cog):
try:
message = await self.bot.wait_for(
- event="message",
+ "message",
timeout=60.0,
check=check
)