11 lines
329 B
JavaScript
11 lines
329 B
JavaScript
const ms = require('ms');
|
|
|
|
module.exports = {
|
|
name: 'ping',
|
|
aliases: [],
|
|
utilisation: '{prefix}ping',
|
|
|
|
execute(client, message) {
|
|
message.channel.send(`Last heartbeat calculated ${ms(Date.now() - client.ws.shards.first().lastPingTimestamp, { long: true })} ago **${client.ws.ping}ms** 🛰️`);
|
|
},
|
|
}; |