Fix for /broadcast not spacing properly. (Thanks Kaikz)
This commit is contained in:
parent
26a2018a44
commit
9cbcfe8d70
1 changed files with 2 additions and 2 deletions
|
|
@ -524,7 +524,7 @@ namespace TShockAPI
|
||||||
|
|
||||||
for (int i = 0; i < args.Parameters.Count; i++)
|
for (int i = 0; i < args.Parameters.Count; i++)
|
||||||
{
|
{
|
||||||
message += args.Parameters[i];
|
message += " " + args.Parameters[i];
|
||||||
}
|
}
|
||||||
|
|
||||||
Tools.Broadcast("(Server Broadcast)" + message, Color.Red);
|
Tools.Broadcast("(Server Broadcast)" + message, Color.Red);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue