Skip to content

Commit

Permalink
feat: backport some 2.4.0 changes to 1.20.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Jamalam360 committed Jul 15, 2024
1 parent a734516 commit 0985c74
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 11 deletions.
13 changes: 3 additions & 10 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,4 @@
This release brings about a significant internal rework with should make Utility Belt significantly
less buggy. I have conducted a long play testing session before this release to try to verify
everything works as intended.
- Fix hotbar rendering even when F1 is pressed.
- Compress icon.

## Closed Issues

- #47: fishing rod flickering
- #46: dupe bug
- #45: dupe bug

Alongside the issues that were reported, many others have been fixed.
> This release is missing a lot of changes from 2.4.0+1.21 as they were only applicable to the 1.21 branch. Please continue to report any issues with 1.20.4 and 1.20.6.
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ public class BeltHotbarRenderer {
private static final ResourceLocation HOTBAR_SELECTION_SPRITE = new ResourceLocation("hud/hotbar_selection");

public static void render(GuiGraphics graphics, float tickDelta) {
if (Minecraft.getInstance().options.hideGui) {
return;
}

Player player = Minecraft.getInstance().player;
StateManager stateManager = StateManager.getClientInstance();

Expand Down
Binary file modified common/src/main/resources/assets/utility_belt/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ org.gradle.jvmargs=-Xmx3G
org.gradle.daemon=false
org.gradle.parallel=true

version=2.2.0+1.20.4
version=2.4.0+1.20.4
minecraft_version=1.20.4
branch=1.20.4
group=io.github.jamalam360
Expand Down

0 comments on commit 0985c74

Please sign in to comment.