We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ddd51f commit a2892aeCopy full SHA for a2892ae
3 files changed
commands/ping.js
@@ -1,10 +1,5 @@
1
-exports.run = async (message, bot, send) => {
2
- const m = await send("Testing Ping...");
3
- const ping = m.createdTimestamp - Date.now();
4
- const ws = bot.ping.toFixed();
5
-
6
- await m.edit(`**Pong!** Latency: ${ping}MS Websocket: ${ws}MS`);
7
- return;
+exports.run = (message, bot) => {
+ send("Pong!");
8
}
9
10
exports.conf = {
0 commit comments