Skip to content

Commit e02fe9e

Browse files
authoredNov 28, 2021
Update ping.js
1 parent 260c73f commit e02fe9e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎slashcommands/Utility/ping.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ module.exports = {
1010
const pingEmbed = new client.discord.MessageEmbed()
1111
.setTitle(':signal_strength: Bot Ping')
1212
.addField("Time", `${Math.floor(msg.createdAt - interaction.createdAt)}ms`, true)
13-
.addField("API Ping", `${client.ws.ping}ms`, true)
13+
.addField("API Ping", `${client.ws.ping}ms`, true)
1414
.setColor(client.config.embedColor)
1515
.setFooter(client.config.embedfooterText, client.user.avatarURL());
1616

1717
await interaction.followUp({embeds: [pingEmbed]});
1818

1919
msg.delete();
2020
},
21-
};
21+
};

0 commit comments

Comments
 (0)
Please sign in to comment.