1
0
mirror of https://github.com/musix-org/musix-oss synced 2025-07-06 22:10:49 +00:00
Files
musix-oss/commands/ping.js
MatteZ02 bf618eecd7 Initial
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**.`);
}
};