Skip to content

Commit e0c1263

Browse files
z5tmSomeone-193
andauthored
docs: Added basic description to CustomItems & CustomRoles (#782)
* Update Main.cs Added short description to customitems * docs: Implemented a better description for EXILED CustomItems's parent command Co-authored by: Someone (@Someone-193) <45270312+Someone-193@users.noreply.github.com> * docs: Implement a better description for EXILED CustomRoles's parent command Co-authored-by: Someone-193 <45270312+Someone-193@users.noreply.github.com> --------- Co-authored-by: Someone-193 <45270312+Someone-193@users.noreply.github.com>
1 parent e0473ab commit e0c1263

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

EXILED/Exiled.CustomItems/Commands/Main.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public Main()
3333
public override string[] Aliases { get; } = { "ci", "cis" };
3434

3535
/// <inheritdoc/>
36-
public override string Description { get; } = string.Empty;
36+
public override string Description { get; } = "The parent command for EXILED custom items";
3737

3838
/// <inheritdoc/>
3939
public override void LoadGeneratedCommands()
@@ -51,4 +51,4 @@ protected override bool ExecuteParent(ArraySegment<string> arguments, ICommandSe
5151
return false;
5252
}
5353
}
54-
}
54+
}

EXILED/Exiled.CustomRoles/Commands/Parent.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public Parent()
3333
public override string[] Aliases { get; } = { "cr", "crs" };
3434

3535
/// <inheritdoc/>
36-
public override string Description { get; } = string.Empty;
36+
public override string Description { get; } = "The parent command for EXILED custom roles";
3737

3838
/// <inheritdoc/>
3939
public override void LoadGeneratedCommands()
@@ -51,4 +51,4 @@ protected override bool ExecuteParent(ArraySegment<string> arguments, ICommandSe
5151
return false;
5252
}
5353
}
54-
}
54+
}

0 commit comments

Comments
 (0)