We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9fd44f5 commit 295df60Copy full SHA for 295df60
1 file changed
src/main/java/net/fabricmc/loom/configuration/providers/minecraft/MinecraftJar.java
@@ -135,7 +135,7 @@ public GameResources(Path path) {
135
136
@Override
137
public MinecraftJar forPath(Path path) {
138
- return new Merged(path);
+ return new GameResources(path);
139
}
140
141
@@ -146,7 +146,7 @@ public NeoForgeUniversal(Path path) {
146
147
148
149
+ return new NeoForgeUniversal(path);
150
151
152
@@ -157,7 +157,7 @@ public FML(Path path) {
157
158
159
160
+ return new FML(path);
161
162
163
0 commit comments