Skip to content

Commit

Permalink
Update MinecraftClientMixin.java
Browse files Browse the repository at this point in the history
  • Loading branch information
aria1th authored Aug 17, 2021
1 parent 9ebe34a commit 31456c7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class MinecraftClientMixin {
// On join a new world/server
@Inject(at = @At("HEAD"), method = "joinWorld")
public void joinWorld(ClientWorld world, CallbackInfo ci) {
Printer.worldBottomY = world.getBottomY();
Printer.worldTopY = world.getTopY();
Printer.worldBottomY = 0;
Printer.worldTopY = 256;
}
}

0 comments on commit 31456c7

Please sign in to comment.