diff options
Diffstat (limited to 'bot/exts/fun')
| -rw-r--r-- | bot/exts/fun/hangman.py | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/bot/exts/fun/hangman.py b/bot/exts/fun/hangman.py index 869e0644..256ff901 100644 --- a/bot/exts/fun/hangman.py +++ b/bot/exts/fun/hangman.py @@ -115,11 +115,11 @@ class Hangman(commands.Cog):                  )              except TimeoutError:                  timeout_embed = Embed( -                    title=choice(NEGATIVE_REPLIES), -                    description="Looks like the bot timed out! You must send a letter within 60 seconds.", +                    title="You lost", +                    description=f"Time's up! The correct word was `{word}`.",                      color=Colours.soft_red,                  ) -                await original_message.edit(embed=timeout_embed) +                await ctx.send(embed=timeout_embed)                  return              # If the user enters a capital letter as their guess, it is automatically converted to a lowercase letter  |