Skip to content

Commit

Permalink
Update 1.2.18
Browse files Browse the repository at this point in the history
  • Loading branch information
Fox2Code committed Sep 26, 2023
1 parent f672f51 commit ecc55c8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ org.gradle.parallel=true
org.gradle.jvmargs=-Xmx1024m -XX:-UseGCOverheadLimit -Dfile.encoding=UTF-8

# FoxLoader properties
foxloader.version=1.2.17
foxloader.version=1.2.18
foxloader.lastReIndevTransformerChanges=1.2.17

# ReIndev properties
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@ public MixinEntityPlayerMP(World var1) {
super(var1);
}

@Override
public void teleportRegistered(double x, double y, double z) {
this.playerNetServerHandler.teleportTo(x, y, z, this.rotationYaw, this.rotationPitch);
}

@Override
public ConnectionType getConnectionType() {
return ConnectionType.SERVER_ONLY;
Expand Down

0 comments on commit ecc55c8

Please sign in to comment.