We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 260c73f commit e02fe9eCopy full SHA for e02fe9e
slashcommands/Utility/ping.js
@@ -10,12 +10,12 @@ module.exports = {
10
const pingEmbed = new client.discord.MessageEmbed()
11
.setTitle(':signal_strength: Bot Ping')
12
.addField("Time", `${Math.floor(msg.createdAt - interaction.createdAt)}ms`, true)
13
- .addField("API Ping", `${client.ws.ping}ms`, true)
+ .addField("API Ping", `${client.ws.ping}ms`, true)
14
.setColor(client.config.embedColor)
15
.setFooter(client.config.embedfooterText, client.user.avatarURL());
16
17
await interaction.followUp({embeds: [pingEmbed]});
18
19
msg.delete();
20
},
21
-};
+};
0 commit comments