From 64936b95cd0836a1852cf4eafd6784f26bc512da Mon Sep 17 00:00:00 2001 From: Michael Date: Sat, 17 Dec 2022 21:58:30 -0600 Subject: [PATCH] Update description for the ping command --- commands/ping.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/ping.js b/commands/ping.js index 0c62520..11d1dad 100644 --- a/commands/ping.js +++ b/commands/ping.js @@ -10,7 +10,7 @@ const { SlashCommandBuilder } = require('discord.js'); module.exports = { data: new SlashCommandBuilder() .setName('ping') - .setDescription('Checks to see if the you or the bot is online'), + .setDescription('Checks to see if the bot is online, as well as it\'s ping'), async execute(interaction) { await interaction.reply({ content: 'Pong!', ephemeral: true }); },