mirror of
https://github.com/myned/modufur.git
synced 2024-11-01 13:02:38 +00:00
Change error output to include user ID instead of mention
This commit is contained in:
parent
09c4fc844e
commit
3dd3647aa4
1 changed files with 2 additions and 2 deletions
|
@ -98,7 +98,7 @@ async def on_message(message):
|
|||
and message.author.id != u.config['owner_id']
|
||||
and not any(s in u.config['prefix'] for s in (message.content[:1], message.content[:2]))):
|
||||
await bot.get_user(u.config['owner_id']).send(
|
||||
f'**@{message.author.name}#{message.author.discriminator}:**\n{message.content}')
|
||||
f'**{message.author.id}:**\n{message.content}')
|
||||
|
||||
await bot.process_commands(message)
|
||||
else:
|
||||
|
@ -152,7 +152,7 @@ async def on_command_error(ctx, error):
|
|||
await bot.get_user(u.config['owner_id']).send(
|
||||
'**COMMAND ERROR** \N{WARNING SIGN} '
|
||||
f'`{ctx.message.content}` '
|
||||
f'from {ctx.author.mention} '
|
||||
f'from {ctx.author.id} '
|
||||
f'in {ctx.channel.mention if isinstance(ctx.channel, d.channel.TextChannel) else "DMs"}'
|
||||
'\n```\n'
|
||||
f'{error}```')
|
||||
|
|
Loading…
Reference in a new issue