From 60a8362e276b708a2e452e9601e2715acef70be6 Mon Sep 17 00:00:00 2001 From: Simon Date: Sun, 16 Oct 2016 12:42:05 +0300 Subject: [PATCH] Add ToLower() back --- TShockAPI/Commands.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TShockAPI/Commands.cs b/TShockAPI/Commands.cs index f31fee14..08e5477e 100755 --- a/TShockAPI/Commands.cs +++ b/TShockAPI/Commands.cs @@ -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 args; if (index < 0)