galactic-bot/structure/client/components/commands/utility/Ping.js

24 lines
482 B
JavaScript
Raw Normal View History

const { Command } = require('../../../../interfaces/');
class PingCommand extends Command {
constructor(client) {
super(client, {
name: 'ping',
2020-05-07 17:08:07 +02:00
module: 'utility'
});
this.client = client;
}
async execute(message) {
const ping = this.client.ws.ping.toFixed(0);
return message.respond(`${message.format('C_PING_RESPONSE')} \`${ping}ms\``, { emoji: 'success' });
}
}
module.exports = PingCommand;