Skip to content

Commit 1b17a79

Browse files
committed
liteloader cannot handle spaces in mixin configs
1 parent 29bf252 commit 1b17a79

File tree

1 file changed

+4
-0
lines changed
  • src/main/java/io/github/ImpactDevelopment/installer/target/targets

1 file changed

+4
-0
lines changed

src/main/java/io/github/ImpactDevelopment/installer/target/targets/Forge.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,10 @@ private void mutateManifest(InputStream input, OutputStream output) throws IOExc
155155
line = "TweakClass: org.spongepowered.asm.launch.MixinTweaker";
156156
}
157157

158+
if (line.startsWith("MixinConfigs: ") && liteloaderSupport) {
159+
line = line.replace(", ", ",");
160+
}
161+
158162
if (line.isEmpty()) {
159163
continue;
160164
}

0 commit comments

Comments
 (0)