summaryrefslogtreecommitdiff
path: root/commands/ping.js
diff options
context:
space:
mode:
Diffstat (limited to 'commands/ping.js')
-rw-r--r--commands/ping.js22
1 files changed, 0 insertions, 22 deletions
diff --git a/commands/ping.js b/commands/ping.js
deleted file mode 100644
index 69526eb..0000000
--- a/commands/ping.js
+++ /dev/null
@@ -1,22 +0,0 @@
-const Discord = require('discord.js');
-
-module.exports = {
- name: 'ping',
- aliases: ['p'],
- description: '',
- execute(msg, args, bot) {
- const t = Date.now();
-
- msg.channel.send('plz wait..').then(m => {
- m.edit(`** **`);
-
- const n = Date.now();
- let emb = new Discord.RichEmbed()
-
- .setDescription(`pong! s5nical's is \`${n - t}ms\`. heartbeat \`${bot.ping}ms\`.`)
- .setColor(0xF97DAE);
-
- msg.channel.send(RichEmbed = emb);
- });
- }
-}; \ No newline at end of file