Skip to content

Commit

Permalink
Try fixing the mappings
Browse files Browse the repository at this point in the history
  • Loading branch information
Su5eD committed Jul 18, 2024
1 parent 570bab0 commit e5683fb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit e5683fb

Please sign in to comment.