= Fixed multi-command accumulation issue
This commit is contained in:
@@ -6,7 +6,6 @@ bethistory=1
|
||||
blur=1
|
||||
boop=1
|
||||
buildhelp=1
|
||||
buildhelp=1
|
||||
c++, g++, cplus, cpp=1
|
||||
catch=1
|
||||
choose=1
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user