Skip to content

Commit

Permalink
fixed a crash in the skin tool
Browse files Browse the repository at this point in the history
  • Loading branch information
Traben-0 committed Dec 29, 2023
1 parent 98b3a9b commit 4497747
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions common/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
- moved some temp rework code into more compatible mixins for mod compatibility
- more stable implementation of the 5.0 rework changes for emissives
- random properties now also allow ranges with the format <high>-<low> instead of only <low>-<high> *(OptiFine parity)*
- fixed a crash in the skin tool


[5.0]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ protected void init() {
ETFPlayerTexture etfPlayerTexture = new ETFPlayerTexture();
ETFManager.getInstance().PLAYER_TEXTURE_MAP.put(MinecraftClient.getInstance().player.getUuid(), etfPlayerTexture);
thisETFPlayerTexture = etfPlayerTexture;
} else {
} else if (thisETFPlayerTexture.etfTextureOfFinalBaseSkin != null){
thisETFPlayerTexture.etfTextureOfFinalBaseSkin.setGUIBlink();
}
}
Expand Down

0 comments on commit 4497747

Please sign in to comment.