Fixes double auto completion in in-game chat.

This commit is contained in:
Alexander Fast
2014-08-21 13:12:29 +02:00
parent a73898d441
commit e934df374d

View File

@@ -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("/"))