fix(ping): fixed capitialization error
This commit is contained in:
parent
ef7976cada
commit
20ebc7ee90
1 changed files with 1 additions and 1 deletions
|
@ -2,7 +2,7 @@ const { SlashCommandBuilder } = require('discord.js');
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
data: new SlashCommandBuilder()
|
data: new SlashCommandBuilder()
|
||||||
.setName('Ping')
|
.setName('ping')
|
||||||
.setDescription('Replies with Pong!'),
|
.setDescription('Replies with Pong!'),
|
||||||
async execute(interaction) {
|
async execute(interaction) {
|
||||||
await interaction.reply('Pong!');
|
await interaction.reply('Pong!');
|
||||||
|
|
Loading…
Reference in a new issue