Skip to content

Commit

Permalink
Update Help Command (evaera#295)
Browse files Browse the repository at this point in the history
  • Loading branch information
wilyt1 authored Aug 15, 2023
1 parent 7b5578e commit c9ceb2f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Cmdr/BuiltInCommands/help.lua
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,10 @@ return {
if command.Aliases and #command.Aliases > 0 then
context:Reply(`Aliases: {table.concat(command.Aliases, ", ")}`, Color3.fromRGB(230, 230, 230))
end
context:Reply(command.Description, Color3.fromRGB(230, 230, 230))
context:Reply(`Description: {command.Description}`, Color3.fromRGB(230, 230, 230))
if command.Group then
context:Reply(`Group: {command.Group}`, Color3.fromRGB(230, 230, 230))
end
for i, arg in ipairs(command.Args) do
context:Reply(
`#{i} {if type(arg) == "table"
Expand Down

0 comments on commit c9ceb2f

Please sign in to comment.