Fixed layouts

This commit is contained in:
Dusty.P 2018-05-05 21:31:03 -08:00
parent b3e68e2a14
commit e92895f44f

View File

@ -19,8 +19,8 @@ class Utils:
msg = await ctx.send(embed=em)
time1 = ctx.message.created_at
time = (msg.created_at - time1).total_seconds() * 1000
em.description = f'''Response Time: **{math.ceil(time)}ms**
Discord Latency: **{math.ceil(self.bot.latency*1000)}ms**'''
em.description = f'Response Time: **{math.ceil(time)}ms**\n' \
f'Discord Latency: **{math.ceil(self.bot.latency*1000)}ms**'
await msg.edit(embed=em)
@commands.command(aliases=['oauth', 'link'])
@ -31,7 +31,7 @@ class Utils:
"""
guy = guy or self.bot.user
url = discord.utils.oauth_url(guy.id)
await ctx.send(f'**{url}**')
await ctx.send(f'**<{url}>**')
@commands.command()
@commands.is_owner()