Skip to content

Commit

Permalink
Build failure fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tanishisherewithhh committed Jun 13, 2024
1 parent a553a0b commit c49e0f2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ dependencies {

//Renderer 1.20.4 library
//TODO: Move to 1.20.6
include modImplementation("com.github.0x3C50:Renderer:aa67e1c")
include modImplementation("com.github.0x3C50:Renderer:aa67e1c979")


// Baritone API
Expand Down
3 changes: 0 additions & 3 deletions src/main/java/dev/heliosclient/ui/clickgui/ModuleButton.java
Original file line number Diff line number Diff line change
Expand Up @@ -174,9 +174,6 @@ public int renderSettings(DrawContext drawContext, int x, int y, int mouseX, int
* Method is called in {@link CategoryPane#mouseClicked(MouseClickEvent)}
*/
public boolean mouseClicked(MouseClickEvent event) {
//Do not accept any clicks if the mouse is over the search bar
if (ClickGUIScreen.INSTANCE.searchBar.isMouseOverInputBox(event.getMouseX(), event.getMouseY())) return false;

if (screen != null && event.getScreen() == screen) {
double mouseX = event.getMouseX();
double mouseY = event.getMouseY();
Expand Down

0 comments on commit c49e0f2

Please sign in to comment.