diff --git a/commands/ping.js b/commands/ping.js index 9716efa..7bc3da8 100644 --- a/commands/ping.js +++ b/commands/ping.js @@ -1,7 +1,5 @@ -const emotes = require("../config/emojis.json"); - exports.run = async (client, message) => { - message.channel.send(`Ping : **${client.ws.ping}ms** ${emotes.success}`) + message.channel.send(`${client.emotes.success} - Ping : **${client.ws.ping}ms** !`) };