From 9cbcfe8d7097936e482132cc9ead9b24b7a90f17 Mon Sep 17 00:00:00 2001 From: Deathmax Date: Fri, 1 Jul 2011 20:57:39 +0800 Subject: [PATCH] Fix for /broadcast not spacing properly. (Thanks Kaikz) --- TShockAPI/Commands.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TShockAPI/Commands.cs b/TShockAPI/Commands.cs index 29507f75..3cd76e9c 100755 --- a/TShockAPI/Commands.cs +++ b/TShockAPI/Commands.cs @@ -524,10 +524,10 @@ namespace TShockAPI 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); return; }