From 20ebc7ee9031fa4bba76d6d21d45ecee4fc43294 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Mon, 21 Aug 2023 12:19:21 -0400 Subject: [PATCH] fix(ping): fixed capitialization error --- commands/utilities/ping.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/utilities/ping.js b/commands/utilities/ping.js index 9245210..5640363 100644 --- a/commands/utilities/ping.js +++ b/commands/utilities/ping.js @@ -2,7 +2,7 @@ const { SlashCommandBuilder } = require('discord.js'); module.exports = { data: new SlashCommandBuilder() - .setName('Ping') + .setName('ping') .setDescription('Replies with Pong!'), async execute(interaction) { await interaction.reply('Pong!');