diff --git a/OpenRA.Mods.RA/Widgets/Logic/IngameChatLogic.cs b/OpenRA.Mods.RA/Widgets/Logic/IngameChatLogic.cs index c7cddb380d..018b4ca69a 100644 --- a/OpenRA.Mods.RA/Widgets/Logic/IngameChatLogic.cs +++ b/OpenRA.Mods.RA/Widgets/Logic/IngameChatLogic.cs @@ -184,6 +184,9 @@ namespace OpenRA.Mods.RA.Widgets.Logic if (string.IsNullOrEmpty(chatText.Text)) return false; + if (chatText.Text.LastOrDefault() == ' ') + return false; + var suggestion = ""; if (chatText.Text.StartsWith("/"))