Skip to content

Commit

Permalink
Revert "Reorder stuff"
Browse files Browse the repository at this point in the history
This reverts commit 027b05f.
  • Loading branch information
2767mr committed Feb 9, 2024
1 parent 027b05f commit bdaa117
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ccloader/js/ccloader.js
Original file line number Diff line number Diff line change
Expand Up @@ -189,15 +189,15 @@ export class ModLoader {
}
}

for (const mod of this.mods.filter(m => m.isEnabled)) {
this._printMissingDependencies(mod, [...mods, ...this.mods]);
}

for (const mod of this.mods) {
mod.disabled = true;
mods.push(mod);
}

for (const mod of this.mods.filter(m => m.isEnabled)) {
this._printMissingDependencies(mod, mods);
}

this.mods = mods;
}

Expand Down

0 comments on commit bdaa117

Please sign in to comment.