mirror of
https://github.com/musix-org/musix-oss
synced 2024-11-10 08:10:18 +00:00
8 lines
246 B
JavaScript
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**.`);
|
||
|
}
|
||
|
};
|