Added the / before command names back into /help output.
This commit is contained in:
parent
3ed1261673
commit
380e8d0818
1 changed files with 1 additions and 1 deletions
|
|
@ -3095,7 +3095,7 @@ namespace TShockAPI
|
|||
return;
|
||||
IEnumerable<string> cmdNames = from cmd in ChatCommands
|
||||
where cmd.CanRun(args.Player) && (cmd.Name != "auth" || TShock.AuthToken != 0)
|
||||
select cmd.Name;
|
||||
select "/" + cmd.Name;
|
||||
PaginationTools.SendPage(args.Player, pageNumber, PaginationTools.BuildLinesFromTerms(cmdNames),
|
||||
new PaginationTools.Settings
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue