fix more error handling.

also i know the repo is dead shut up
This commit is contained in:
TheTechRobo 2021-12-07 18:16:45 -05:00 committed by GitHub
parent 785796973e
commit b06fee294e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

2
bot.py
View File

@ -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)