We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb8b262 commit f2ff102Copy full SHA for f2ff102
src/main/java/net/minecraftforge/gradle/internal/MinecraftExtensionImpl.java
@@ -433,6 +433,8 @@ public MavenizerInstance dependency(
433
var mappings = minecraftDependency.getMappings();
434
if ("parchment".equals(mappings.getChannel()))
435
ret.addAll(List.of("--parchment", mappings.getVersion()));
436
+ else if (!"official".equals(mappings.getChannel()))
437
+ ret.addAll(List.of("--mappings", mappings.getChannel() + ':' + mappings.getVersion()));
438
439
for (var repo : this.getRepositories()) {
440
if (MAVENIZER_REPO_NAME.equals(repo.getName()))
0 commit comments