Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
John200410 committed May 11, 2024
1 parent 428f500 commit 183e4f6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ org.gradle.jvmargs=-Xmx1G

#properties
minecraft_version = 1.20.4
plugin_version = 1.1.5
plugin_version = 1.1.6
maven_group = me.john200410
archives_base_name = rusherhack-spotify
10 changes: 5 additions & 5 deletions src/main/java/me/john200410/spotify/ui/SpotifyHudElement.java
Original file line number Diff line number Diff line change
Expand Up @@ -233,11 +233,6 @@ public void tick() {
}
}

@Override
public boolean shouldDrawBackground() {
return false;
}

@Override
public void renderContent(RenderContext context, double mouseX, double mouseY) {
final IRenderer2D renderer = this.getRenderer();
Expand Down Expand Up @@ -435,6 +430,11 @@ public double getHeight() {
return 75;
}

@Override
public boolean shouldDrawBackground() {
return false;
}

private int getFillColor() {
//TODO: return color based on song thumbnail
return this.backgroundColor.getValueRGB();
Expand Down

0 comments on commit 183e4f6

Please sign in to comment.