1
0
mirror of https://github.com/musix-org/musix-oss synced 2024-09-20 04:31:56 +00:00
musix-oss/commands/ping.js
2019-08-02 11:32:00 +03:00

8 lines
246 B
JavaScript

module.exports = {
name: 'ping',
description: 'Ping command.',
cooldown: 5,
execute(message, args, client, RichEmbed) {
return message.channel.send(`My current Ping: **${Math.floor(client.ping * 10) / 10} ms**.`);
}
};