From 085e5af10118077d086aee8cfeec3ba647c8f34a Mon Sep 17 00:00:00 2001 From: Zerio <43386412+ZerioDev@users.noreply.github.com> Date: Sun, 15 Nov 2020 18:50:41 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Bug=20fixes=20&=20update=20(v2.0.0)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- commands/ping.js | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/commands/ping.js b/commands/ping.js index 648eeef..9716efa 100644 --- a/commands/ping.js +++ b/commands/ping.js @@ -1,9 +1,7 @@ -const emotes = require ("../config/emojis.json"); -const Discord = require("discord.js") +const emotes = require("../config/emojis.json"); -exports.run = async (client, message, args) => { +exports.run = async (client, message) => { - //Message - message.channel.send(`Ping: ${client.ws.ping} ms ${emotes.success}`) + message.channel.send(`Ping : **${client.ws.ping}ms** ${emotes.success}`) -} +};