Add ToLower() back
This commit is contained in:
parent
b16b9e70f2
commit
60a8362e27
1 changed files with 2 additions and 2 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue