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

26 lines
599 B
JavaScript
Raw Normal View History

const { Command } = require('../../../../interfaces/');
class PingCommand extends Command {
constructor(client) {
super(client, {
name: 'ping',
module: 'utility',
description: "Determines the ping of the bot."
});
this.client = client;
}
async execute(message) {
const ping = this.client.ws.ping.toFixed(0);
//console.log(message.format('C_PING_RESPONSE'))
return message.respond(`${message.format('C_PING_RESPONSE')} \`${ping}ms\``, { emoji: 'success' });
}
}
module.exports = PingCommand;