diff options
Diffstat (limited to 'commands/ping.js')
| -rw-r--r-- | commands/ping.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/commands/ping.js b/commands/ping.js new file mode 100644 index 0000000..7291018 --- /dev/null +++ b/commands/ping.js @@ -0,0 +1,4 @@ +const Discord = require('discord.js'); +exports.run = (client, message, args, config) => { + message.reply("**PONG!** :ping_pong: " + Math.round(client.ping) + " ms"); +} |
