Fix tab auto-complete, broke in last commit

This commit is contained in:
UnknownShadow200 2017-12-16 06:39:41 +11:00
parent 4fb746a3a7
commit e08202eca9

View File

@ -144,7 +144,7 @@ namespace ClassicalSharp.Gui.Widgets {
string rawName = entries[i].PlayerName;
string name = Utils.StripColours(rawName);
if (Utils.CaselessEquals(name, part)) matches.Add(name);
if (Utils.CaselessStarts(name, part)) matches.Add(name);
}
if (matches.Count == 1) {