Skip to content

Commit

Permalink
[V3 BetterMod] Reverted fields changes
Browse files Browse the repository at this point in the history
  • Loading branch information
laggron42 committed May 21, 2018
1 parent f7fa679 commit f3d5829
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions bettermod/bettermod.py
Original file line number Diff line number Diff line change
Expand Up @@ -920,10 +920,8 @@ async def report(self, ctx, user: discord.Member, *, reason):
return

report = discord.Embed(title="Report", description="A user reported someone for a abusive behaviour")
report.add_field(name="From", value="**Name:** {}\n**ID: {}".format(
str(author), author.id), inline=True)
report.add_field(name="To", value="**Name:** {}\n**ID: {}".format(
str(user), user.id), inline=True)
report.add_field(name="From", value=author.mention, inline=True)
report.add_field(name="To", value=user.mention), inline=True)
report.add_field(name="Channel", value=ctx.message.channel.mention, inline=True)
if user.voice.voice_channel is not None:
report.add_field(name="Reported user voice channel", value=user.voice.voice_channel.name, inline=True)
Expand Down

0 comments on commit f3d5829

Please sign in to comment.