Skip to content

Commit 295df60

Browse files
committed
fix: split jar forPath
1 parent 9fd44f5 commit 295df60

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/main/java/net/fabricmc/loom/configuration/providers/minecraft/MinecraftJar.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ public GameResources(Path path) {
135135

136136
@Override
137137
public MinecraftJar forPath(Path path) {
138-
return new Merged(path);
138+
return new GameResources(path);
139139
}
140140
}
141141

@@ -146,7 +146,7 @@ public NeoForgeUniversal(Path path) {
146146

147147
@Override
148148
public MinecraftJar forPath(Path path) {
149-
return new Merged(path);
149+
return new NeoForgeUniversal(path);
150150
}
151151
}
152152

@@ -157,7 +157,7 @@ public FML(Path path) {
157157

158158
@Override
159159
public MinecraftJar forPath(Path path) {
160-
return new Merged(path);
160+
return new FML(path);
161161
}
162162
}
163163

0 commit comments

Comments
 (0)