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; return true;
} }
else if (index < 0) else if (index < 0)
cmdName = cmdText; cmdName = cmdText.ToLower();
else else
cmdName = cmdText.Substring(0, index); cmdName = cmdText.Substring(0, index).ToLower();
List<string> args; List<string> args;
if (index < 0) if (index < 0)