fix(ping): fixed capitialization error

This commit is contained in:
Seaswimmer 2023-08-21 12:19:21 -04:00
parent ef7976cada
commit 20ebc7ee90
No known key found for this signature in database
GPG key ID: 5019678FD9CF50D8

View file

@ -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!');