Skip to content

Commit

Permalink
[Enhancement] help command now shows if the command needs an argument…
Browse files Browse the repository at this point in the history
… and its other aliases too
  • Loading branch information
naseif committed Oct 4, 2021
1 parent c7dd8e6 commit a0fa318
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions commands/Misc/help.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,14 @@ module.exports = {
const embed = {
color: "#9dcc37",
fields: [
{
name: "Aliases",
value: "`" + `${command.aliases.join(", ")}` + "`",
},
{
name: "Requires arguments?",
value: `${command.args ? "Yes" : "No"}`,
},
{
name: "Category",
value: `${command?.category}`,
Expand Down

0 comments on commit a0fa318

Please sign in to comment.