= Fixed multi-command accumulation issue

This commit is contained in:
Matthew Cech
2019-05-24 19:04:04 -07:00
parent 0ca4160d7b
commit 18b7fd84af
2 changed files with 2 additions and 2 deletions
-1
View File
@@ -6,7 +6,6 @@ bethistory=1
blur=1
boop=1
buildhelp=1
buildhelp=1
c++, g++, cplus, cpp=1
catch=1
choose=1
+2 -1
View File
@@ -64,7 +64,8 @@ public class CommandEnabler extends BaseKeyValueFile
for(int i = 0; i < unloc.size(); ++i)
{
String command = unloc.get(i);
String command = unloc.get(i).toLowerCase();
if(enabledMap.putIfAbsent(command, defaultEnabledState) == null)
{
GlobalLog.Log(LogFilter.Strings, "Identified new toggleable raw command: " + command);