Skip to content

Commit

Permalink
Fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Mira committed Aug 11, 2024
1 parent 7697093 commit 7b34922
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/commands/utility/help.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ module.exports = {
})
.setColor("#CD1C6C")
.setDescription(
"<:discord:885340297733746798> [Invite Jasmine](https://discord.com/api/oauth2/authorize?client_id=969633016089546763&permissions=0&scope=bot%20applications.commands)\n<:jasmine:1004800922439925893> [Jasmine's Jolly Joyhouse](https://discord.gg/NcPeGuNEdc)"
"<:discord:885340297733746798> [Invite Jasmine](https://discord.com/api/oauth2/authorize?client_id=969633016089546763&permissions=0&scope=bot%20applications.commands)\n<:jasmine:1004800922439925893> [Jasmine's Jolly Joyhouse](https://discord.gg/NcPeGuNEdc)",
)
.setThumbnail(client.user.displayAvatarURL())
.setTimestamp()
Expand All @@ -53,14 +53,14 @@ module.exports = {
client.categories.forEach((category) => {
embed.addFields([
{
name: category.chatAt(0).toUpperCase() + category.slice(1),
name: category.charAt(0).toUpperCase() + category.slice(1),
value: `List of the ${category} commands`,
inline: true,
},
]);

options.push({
label: category.chatAt(0).toUpperCase() + category.slice(1),
label: category.charAt(0).toUpperCase() + category.slice(1),
description: `List of the ${category} commands`,
value: category,
});
Expand Down Expand Up @@ -103,7 +103,7 @@ module.exports = {
},
])
.setDescription(
"<:discord:885340297733746798> [Invite Jasmine](https://discord.com/api/oauth2/authorize?client_id=969633016089546763&permissions=0&scope=bot%20applications.commands)\n<:jasmine:1004800922439925893> [Jasmine's Jolly Joyhouse](https://discord.gg/NcPeGuNEdc)"
"<:discord:885340297733746798> [Invite Jasmine](https://discord.com/api/oauth2/authorize?client_id=969633016089546763&permissions=0&scope=bot%20applications.commands)\n<:jasmine:1004800922439925893> [Jasmine's Jolly Joyhouse](https://discord.gg/NcPeGuNEdc)",
)
.setThumbnail(client.user.displayAvatarURL())
.setTimestamp()
Expand All @@ -116,7 +116,7 @@ module.exports = {

collector();
},
() => null
() => null,
);
}
},
Expand All @@ -137,7 +137,7 @@ async function getAll(client, message) {
})
.setColor("#CD1C6C")
.setDescription(
"<:discord:885340297733746798> [Invite Jasmine](https://discord.com/api/oauth2/authorize?client_id=969633016089546763&permissions=0&scope=bot%20applications.commands)\n<:jasmine:1004800922439925893> [Jasmine's Jolly Joyhouse](https://discord.gg/NcPeGuNEdc)"
"<:discord:885340297733746798> [Invite Jasmine](https://discord.com/api/oauth2/authorize?client_id=969633016089546763&permissions=0&scope=bot%20applications.commands)\n<:jasmine:1004800922439925893> [Jasmine's Jolly Joyhouse](https://discord.gg/NcPeGuNEdc)",
)
.setThumbnail(client.user.displayAvatarURL())
.setTimestamp()
Expand Down Expand Up @@ -199,7 +199,7 @@ async function getAll(client, message) {
},
])
.setDescription(
"<:discord:885340297733746798> [Invite Jasmine](https://discord.com/api/oauth2/authorize?client_id=969633016089546763&permissions=0&scope=bot%20applications.commands)\n<:jasmine:1004800922439925893> [Jasmine's Jolly Joyhouse](https://discord.gg/NcPeGuNEdc)"
"<:discord:885340297733746798> [Invite Jasmine](https://discord.com/api/oauth2/authorize?client_id=969633016089546763&permissions=0&scope=bot%20applications.commands)\n<:jasmine:1004800922439925893> [Jasmine's Jolly Joyhouse](https://discord.gg/NcPeGuNEdc)",
)
.setThumbnail(client.user.displayAvatarURL())
.setTimestamp()
Expand All @@ -212,7 +212,7 @@ async function getAll(client, message) {

collector();
},
() => null
() => null,
);
}
}
Expand Down

0 comments on commit 7b34922

Please sign in to comment.