Skip to content

Commit

Permalink
Use 0 as class reader flags in Modlauncher bytecode provider (FabricM…
Browse files Browse the repository at this point in the history
  • Loading branch information
Su5eD authored Apr 16, 2024
1 parent ba80661 commit e779303
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ public ClassNode getClassNode(String name, boolean runTransformers) throws Class
if (classBytes != null && classBytes.length != 0) {
ClassNode classNode = new ClassNode();
ClassReader classReader = new MixinClassReader(classBytes, canonicalName);
classReader.accept(classNode, ClassReader.EXPAND_FRAMES);
classReader.accept(classNode, 0);
return classNode;
}

Expand Down

0 comments on commit e779303

Please sign in to comment.