Changed variable name to appease tester

This commit is contained in:
MystaraTheGreat 2021-03-07 11:23:52 +00:00
parent a467d900c9
commit d83e696a8d

View File

@ -55,13 +55,13 @@ var Loader = (function () {
// Notify core of loaded modules. // Notify core of loaded modules.
MM.modulesStarted(moduleObjects); MM.modulesStarted(moduleObjects);
// Starting modules also hides any modules that have requeste dto be initially hidden // Starting modules also hides any modules that have requested to be initially hidden
for (var n in moduleObjects) { for (var n in moduleObjects) {
var module = moduleObjects[n]; var thisModule = moduleObjects[n];
if (module.data.hiddenOnStartup) { if (thisModule.data.hiddenOnStartup) {
Log.info("Initially hiding " + module.name); Log.info("Initially hiding " + thisModule.name);
module.hide(); thisModule.hide();
} }
} }
}; };