fix ping cmd

This commit is contained in:
ry 2020-01-09 18:14:50 +01:00
parent 02c51912b0
commit 21a2812416

View file

@ -20,6 +20,8 @@ module.exports = class Ping extends Command {
const ws = Math.round(ctx.client.ws.ping); const ws = Math.round(ctx.client.ws.ping);
const shard = Math.round(ctx.guild.shard.ping); const shard = Math.round(ctx.guild.shard.ping);
return m.edit(`REST ${rest / 1000}s (${rest}ms)\nWS ${ws / 1000}s (${ws}ms)\nShard Avg. ${shard / 1000}s (${shard}ms) [${ctx.guild.shard.pings.join(', ')}]`); return m.edit(`REST ${rest / 1000}s (${rest}ms)\nWS ${ws / 1000}s (${ws}ms)`);
} }
} }
// \nShard Avg. ${shard / 1000}s (${shard}ms) [${ctx.guild.shard.pings.join(', ')}]