diff --git a/bot.py b/bot.py index c8af1d3..0dab70e 100644 --- a/bot.py +++ b/bot.py @@ -158,7 +158,7 @@ async def on_command_error(ctx, error): elif isinstance(error, hypierror.InvalidPlayer): message = _("This seems to be an invalid player - it doesn't have an entry on Mojang's API.\nTry running {PREFIX}[command] {uuid} False to search by UUID instead. Run {PREFIX}help bedwars for more info.").format(PREFIX=PREFIX, uuid=error) elif isinstance(error, commands.errors.CommandNotFound): - message = _("command not found. Try {PREFIX}help for a list!") + message = _("command not found. Try {PREFIX}help for a list!").format(PREFIX=PREFIX) else: message = "Unknown error !" em = discord.Embed(title=_("⚠️ Oops! ⚠️"), description=message)