Change ping command

This commit is contained in:
Dustin Pianalto 2020-04-30 22:08:02 -08:00
parent b58bb3efe5
commit b4f7ac95b8

View File

@ -5,6 +5,7 @@ import inspect
import sys import sys
import psutil import psutil
import math import math
import time
from geeksbot.imports import utils from geeksbot.imports import utils
admin_logger = logging.getLogger('admin') admin_logger = logging.getLogger('admin')
@ -60,10 +61,10 @@ class Admin(commands.Cog):
title=f'Pong 🏓', title=f'Pong 🏓',
color=discord.Colour.green() color=discord.Colour.green()
) )
time1 = time.monotonic()
msg = await ctx.send(embed=em) msg = await ctx.send(embed=em)
time1 = ctx.message.created_at time_dif = (time.monotonic() - time1) * 1000
time = (msg.created_at - time1).total_seconds() * 1000 em.description = f'Response Time: **{math.ceil(time_dif)}ms**\n' \
em.description = f'Response Time: **{math.ceil(time)}ms**\n' \
f'Discord Latency: **{math.ceil(self.bot.latency*1000)}ms**' f'Discord Latency: **{math.ceil(self.bot.latency*1000)}ms**'
await msg.edit(embed=em) await msg.edit(embed=em)