This commit is contained in:
insert 2024-08-11 13:10:03 -04:00
parent d0cefbff81
commit 64ac4268f0
Signed by: insert
GPG key ID: A70775C389ACF105

View file

@ -19,11 +19,11 @@ class misc(commands.Cog):
@commands.Cog.listener('on_application_command_error')
async def errorhandler(self, interaction: nextcord.Interaction, error: nextcord.DiscordException):
strerror = traceback.format_exc(error)
error = traceback.format_exception(type(error), error, error.__traceback__)
print(error, file=sys.stderr)
error = traceback.format_exc(error)
random.shuffle(errormsg)
message = f"{errormsg[0]}\n```py\n{error[-1800:]}\n```\n Contact <@{self.bot.owner_id}> if the error persists"
message = f"{errormsg[0]}\n```py\n{strerror[-1800:]}\n```\n Contact <@{self.bot.owner_id}> if the error persists"
try:
await interaction.response.send_message(message, ephemeral=True)
except: