Skip to content

Commit 20be8d0

Browse files
committed
Fix obfuscation error
1 parent 967b0c1 commit 20be8d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

forge/src/main/java/org/embeddedt/modernfix/forge/mixin/core/CrashReportAnalyserMixin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public class CrashReportAnalyserMixin {
2323
*
2424
* It seems unlikely ModernFix will simultaneously cause a crash while it's not obvious it caused it.
2525
*/
26-
@Inject(method = "buildSuspectedModsSection", at = @At("HEAD"), require = 0)
26+
@Inject(method = "buildSuspectedModsSection", at = @At("HEAD"), require = 0, remap = false)
2727
private static void removeOurselvesFromSuspectedMods(StringBuilder stringBuilder, CallbackInfo ci) {
2828
SUSPECTED_MODS.keySet().removeIf(iModInfo -> iModInfo.getModId().equals("modernfix"));
2929
}

0 commit comments

Comments
 (0)