Skip to content

Commit

Permalink
Fully fixed the bug now
Browse files Browse the repository at this point in the history
  • Loading branch information
McJty committed Apr 15, 2022
1 parent 6fe625d commit dba5f80
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
Upcoming:
- Fully fixed the bug now

1.16-3.1.6:
- Fixed a bug in recent versions of forge in relation to the new stacking gui's feature

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ private static void setupOverlayRendering(double sw, double sh) {
RenderSystem.ortho(0.0D, sw, sh, 0.0D, 1000.0D, ForgeHooksClient.getGuiFarPlane());
RenderSystem.matrixMode(GL11.GL_MODELVIEW);
RenderSystem.loadIdentity();
RenderSystem.translatef(0.0F, 0.0F, -2000.0F);
RenderSystem.translatef(0.0F, 0.0F, 1000.0F - ForgeHooksClient.getGuiFarPlane());
}

private static void checkCleanup() {
Expand Down

0 comments on commit dba5f80

Please sign in to comment.