From dc78715362459bf3e17c7031182ec5323e31d886 Mon Sep 17 00:00:00 2001 From: notunderctrl Date: Fri, 13 Jan 2023 08:58:10 +0300 Subject: [PATCH] Remove ping command --- 08 - Ping Command/src/commands/misc/ping.js | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 08 - Ping Command/src/commands/misc/ping.js diff --git a/08 - Ping Command/src/commands/misc/ping.js b/08 - Ping Command/src/commands/misc/ping.js deleted file mode 100644 index e2bf088..0000000 --- a/08 - Ping Command/src/commands/misc/ping.js +++ /dev/null @@ -1,12 +0,0 @@ -module.exports = { - name: 'ping', - description: 'Pong!', - // devOnly: Boolean, - testOnly: true, - // options: Object[], - // deleted: Boolean, - - callback: (client, interaction) => { - interaction.reply(`Pong! ${client.ws.ping}ms`); - }, -};