Skip to content

Commit

Permalink
Update 1.2.14
Browse files Browse the repository at this point in the history
  • Loading branch information
Fox2Code committed Sep 8, 2023
1 parent 9e34b33 commit 0e202fe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ private void patchNetClientHandler(ClassNode classNode) {
if (abstractInsnNode.getOpcode() == GETFIELD &&
((FieldInsnNode)abstractInsnNode).name.equals("currentContainer")) {
insnList.insertBefore(abstractInsnNode, new MethodInsnNode(INVOKESTATIC, classNode.name, "getNetworkContainer",
"(Lnet/minecraft/src/game/entity/player/EntityPlayer;)Lnet/minecraft/src/client/gui/Container;", false));
"(Lnet/minecraft/src/game/entity/player/EntityPlayer;)Lnet/minecraft/src/client/gui/Container;", true));
insnList.remove(abstractInsnNode);
}
}
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ org.gradle.parallel=true
org.gradle.jvmargs=-Xmx1024m -XX:-UseGCOverheadLimit -Dfile.encoding=UTF-8

# FoxLoader properties
foxloader.version=1.2.13
foxloader.lastReIndevTransformerChanges=1.2.13
foxloader.version=1.2.14
foxloader.lastReIndevTransformerChanges=1.2.14

# ReIndev properties
reindev.clientUrl=https://cdn.fox2code.com/files/reindev_2.8.1_04.jar
Expand Down

1 comment on commit 0e202fe

@Meolsei
Copy link

@Meolsei Meolsei commented on 0e202fe Sep 8, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

still crahes

Please sign in to comment.