Skip to content

Commit

Permalink
Merge remote-tracking branch 'refs/remotes/zkitefly/skip-fabric-api-a…
Browse files Browse the repository at this point in the history
…nd-quilt-api-in-InstallerListPage' into prs
  • Loading branch information
burningtnt committed Aug 31, 2024
2 parents b3d8971 + 4612a6d commit c2c816f
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,12 @@ public void loadVersion(Profile profile, String versionId) {
// Conventional libraries: game, fabric, forge, neoforge, liteloader, optifine
for (InstallerItem item : group.getLibraries()) {
String libraryId = item.getLibraryId();

// Skip fabric-api and quilt-api
if (libraryId.contains("fabric-api") || libraryId.contains("quilt-api")) {
continue;
}

String libraryVersion = analyzer.getVersion(libraryId).orElse(null);

if (libraryVersion != null) {
Expand Down

0 comments on commit c2c816f

Please sign in to comment.