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
366 B
JavaScript

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