Add ToLower() back

This commit is contained in:
Simon 2016-10-16 12:42:05 +03:00
parent b16b9e70f2
commit 60a8362e27

View file

@ -644,9 +644,9 @@ namespace TShockAPI
return true;
}
else if (index < 0)
cmdName = cmdText;
cmdName = cmdText.ToLower();
else
cmdName = cmdText.Substring(0, index);
cmdName = cmdText.Substring(0, index).ToLower();
List<string> args;
if (index < 0)