We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a05ba63 commit 9726254Copy full SHA for 9726254
patching/src/main/java/com/fox2code/foxloader/patching/game/GuiScreenPatch.java
@@ -101,7 +101,7 @@ private static void patchGuiDebug(ClassNode classNode) {
101
102
private static void patchGuiScreen(ClassNode classNode) {
103
MethodNode setWorldAndResolution = TransformerUtils.getMethod(classNode, "setWorldAndResolution");
104
- setWorldAndResolution.access |= ACC_FINAL;
+ setWorldAndResolution.access &= ~ACC_FINAL;
105
InsnList insnList = new InsnList();
106
insnList.add(new VarInsnNode(ALOAD, 0));
107
0 commit comments