diff --git a/build.gradle.kts b/build.gradle.kts index 9abaa94..3ec4a7c 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -244,7 +244,8 @@ open class GenerateMergedMappingsTask : DefaultTask() { val filtered = MemoryMappingTree() val toOfiSource = MappingSourceNsSwitch(filtered, MappingsNamespace.OFFICIAL.toString()) val toMojSource = MappingSourceNsSwitch(toOfiSource, MappingsNamespace.MOJANG.toString(), true) - yarnTree.accept(toMojSource) + val toInterSource = MappingSourceNsSwitch(toMojSource, MappingsNamespace.INTERMEDIARY.toString(), true) + yarnTree.accept(toInterSource) // OFFICIAL -> INTERMEDIARY -> MOJANG val completed = MemoryMappingTree()