Skip to content

Commit 260c73f

Browse files
authored
Update help.js
1 parent 631d0b4 commit 260c73f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

slashcommands/Bot/help.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,16 @@ module.exports = {
2020
// If you want to delete them, remove this part of
2121
// the code and in line: 62 delete ", components: [row]"
2222
const row = new client.discord.MessageActionRow()
23-
.addComponents(
24-
new client.discord.MessageButton()
23+
.addComponents(
24+
new client.discord.MessageButton()
2525
.setLabel("GitHub")
2626
.setStyle("LINK")
2727
.setURL("https://github.com/Expectatives/Discord.js-v13-Example"),
2828
new client.discord.MessageButton()
2929
.setLabel("Support")
3030
.setStyle("LINK")
3131
.setURL("https://dsc.gg/faithcommunity")
32-
);
32+
);
3333

3434
const commandInt = interaction.options.getString("command");
3535
if (!commandInt) {
@@ -55,7 +55,7 @@ module.exports = {
5555
.setTitle(`${client.user.username} SlashHelp`)
5656
.setDescription(` Hello **<@${interaction.member.id}>**, I am <@${client.user.id}>. \nYou can use \`/help <slash_command>\` to see more info about the SlashCommands!\n**Total Commands:** ${client.commands.size}\n**Total SlashCommands:** ${client.slashCommands.size}`)
5757
.addField("🤖 - Bot SlashCommands", botCommandsList.map((data) => `${data}`).join(", "), true)
58-
.addField("🛠 - Utility SlashCommands", utilityCommandsList.map((data) => `${data}`).join(", "), true)
58+
.addField("🛠 - Utility SlashCommands", utilityCommandsList.map((data) => `${data}`).join(", "), true)
5959
.setColor(client.config.embedColor)
6060
.setFooter(client.config.embedfooterText, client.user.avatarURL());
6161

@@ -88,4 +88,4 @@ module.exports = {
8888
}
8989
}
9090
},
91-
};
91+
};

0 commit comments

Comments
 (0)