Skip to content

Commit

Permalink
Add ${version_name}.jar to the prod client ignoreList, fixes crashes …
Browse files Browse the repository at this point in the history
…with some launchers (#1718)
  • Loading branch information
Technici4n authored and shartte committed Jan 2, 2025
1 parent b43e04c commit d98dd05
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,8 @@ public void apply(Project project) {
}
return repos;
}));
task.getIgnoreList().addAll("client-extra", "neoforge-");
// ${version_name}.jar will be filled out by the launcher. It corresponds to the raw SRG Minecraft client jar.
task.getIgnoreList().addAll("client-extra", "${version_name}.jar");
task.setModules(configurations.modulePath);
task.getLauncherProfile().set(neoDevBuildDir.map(dir -> dir.file("launcher-profile.json")));
});
Expand Down

0 comments on commit d98dd05

Please sign in to comment.