Fix obfuscation error

This commit is contained in:
embeddedt 2025-04-02 18:58:39 -04:00
parent 967b0c1982
commit 20be8d0da3
No known key found for this signature in database
GPG Key ID: A69433EC199B5613

View File

@ -23,7 +23,7 @@ public class CrashReportAnalyserMixin {
*
* It seems unlikely ModernFix will simultaneously cause a crash while it's not obvious it caused it.
*/
@Inject(method = "buildSuspectedModsSection", at = @At("HEAD"), require = 0)
@Inject(method = "buildSuspectedModsSection", at = @At("HEAD"), require = 0, remap = false)
private static void removeOurselvesFromSuspectedMods(StringBuilder stringBuilder, CallbackInfo ci) {
SUSPECTED_MODS.keySet().removeIf(iModInfo -> iModInfo.getModId().equals("modernfix"));
}