mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-11-15 11:39:11 +03:00
[FIX] optMod.visible работала некорректно
This commit is contained in:
parent
009aa2e6ab
commit
693996a968
1 changed files with 1 additions and 1 deletions
|
@ -100,7 +100,7 @@ var options = {
|
||||||
var checkBoxList = new java.util.ArrayList;
|
var checkBoxList = new java.util.ArrayList;
|
||||||
list.forEach(function(modFile) {
|
list.forEach(function(modFile) {
|
||||||
var modName = modFile.name, modDescription = "", subLevel = 1;
|
var modName = modFile.name, modDescription = "", subLevel = 1;
|
||||||
if(!modFile.isVisible)
|
if(!modFile.visible)
|
||||||
{
|
{
|
||||||
LogHelper.debug("optionalMod %s hidden",modFile.name);
|
LogHelper.debug("optionalMod %s hidden",modFile.name);
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in a new issue