From e2ce6a98443aadcd17a9d5331ea94e1b726bd8dd Mon Sep 17 00:00:00 2001 From: Zerio <43386412+ZerioDev@users.noreply.github.com> Date: Wed, 24 Jun 2020 15:20:14 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20New=20command?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- commands/ping.js | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 commands/ping.js diff --git a/commands/ping.js b/commands/ping.js new file mode 100644 index 0000000..64cc37f --- /dev/null +++ b/commands/ping.js @@ -0,0 +1,9 @@ +const emotes = require ("../config/emojis.json"); +const Discord = require("discord.js") + +exports.run = async (client, message, args) => { + + //Message + message.channel.send(`Ping : ${client.ws.ping} ${emotes.success}`) + +}