Add space after comma so names look less clustered
This commit is contained in:
parent
2dc887266d
commit
b8b86a42fd
1 changed files with 1 additions and 1 deletions
|
|
@ -1526,7 +1526,7 @@ namespace TShockAPI
|
|||
}
|
||||
|
||||
foo = foo.Replace("%map%", (TShock.Config.Settings.UseServerName ? TShock.Config.Settings.ServerName : Main.worldName));
|
||||
foo = foo.Replace("%players%", String.Join(",", players));
|
||||
foo = foo.Replace("%players%", String.Join(", ", players));
|
||||
foo = foo.Replace("%specifier%", TShock.Config.Settings.CommandSpecifier);
|
||||
foo = foo.Replace("%playercount%", String.Join("/", TShock.Utils.GetActivePlayerCount(), TShock.Config.MaxSlots));
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue