Skip to content

Commit 4429aa3

Browse files
authored
Disable background blur in click gui
1 parent 612a8a6 commit 4429aa3

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/main/java/baritone/utils/GuiClick.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,11 @@ public void render(GuiGraphics stack, int mouseX, int mouseY, float partialTicks
8383
}
8484
}
8585

86+
@Override
87+
public void renderBackground(GuiGraphics stack, int mouseX, int mouseY, float partialTicks) {
88+
// Prevent default background rendering
89+
}
90+
8691
@Override
8792
public boolean mouseReleased(double mouseX, double mouseY, int mouseButton) {
8893
if (currentMouseOver != null) { //Catch this, or else a click into void will result in a crash

0 commit comments

Comments
 (0)