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;