Changed iterative variable from m to n to appease tester

This commit is contained in:
MystaraTheGreat 2021-03-07 11:20:19 +00:00
parent 96be8d6fea
commit a467d900c9

View File

@ -56,8 +56,8 @@ var Loader = (function () {
MM.modulesStarted(moduleObjects);
// Starting modules also hides any modules that have requeste dto be initially hidden
for (var m in moduleObjects) {
var module = moduleObjects[m];
for (var n in moduleObjects) {
var module = moduleObjects[n];
if (module.data.hiddenOnStartup) {
Log.info("Initially hiding " + module.name);