[FIX] Правка логики работы дерева опциональных модов (#184)

При перезаходе в лаунчер и отключении основной опциональной модификации (от которой зависят другие) - эти же другие не отключались, что приводило к различным конфликтам.
This commit is contained in:
Yaroslavik 2019-03-01 15:01:18 +02:00 committed by Zaxar163
parent df39276c2a
commit c25e5a77aa

View file

@ -198,9 +198,9 @@ function verifyLauncher(e) {
} }
overlay.swap(0, processing.overlay, function(event) makeProfilesRequest(function(result) { overlay.swap(0, processing.overlay, function(event) makeProfilesRequest(function(result) {
settings.lastProfiles = result.profiles; settings.lastProfiles = result.profiles;
options.load();
// Update profiles list and hide overlay // Update profiles list and hide overlay
updateProfilesList(result.profiles); updateProfilesList(result.profiles);
options.load();
overlay.hide(0, function() { overlay.hide(0, function() {
if (cliParams.autoLogin) { if (cliParams.autoLogin) {
goAuth(null); goAuth(null);