This repository has been archived on 2024-01-30. You can view files and clone it, but cannot push or open issues or pull requests.
anitrox/commands/ping.js

18 lines
367 B
JavaScript
Raw Normal View History

2021-01-23 01:08:05 -06:00
module.exports = {
name: "ping",
description: "Gets bot ping",
execute(client, message, args) {
const embed = {
"title": ":ping_pong: Ping",
"color": 15433939,
"fields": [
{
"name": "Ping is " + client.ws.ping + " ms",
"value": "If this is more than 1500ms there may be a problem!"
}
]
};
message.channel.send({ embed });
}
};