Skip to content

Commit

Permalink
Update BetterChat.java to fix player heads in the chat
Browse files Browse the repository at this point in the history
Line 463 is a bugged, redundant copy of line 462 which causes player head images to appear distorted.
  • Loading branch information
interruptedexecution authored and Wide-Cat committed Dec 27, 2024
1 parent 0a17672 commit f481582
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,6 @@ private void drawTexture(DrawContext context, IChatHudLine line, int y) {
Identifier skin = entry.getSkinTextures().texture();

context.drawTexture(RenderLayer::getGuiTextured, skin, 0, y, 8, 8, 8, 8, 8, 8, 64, 64);
context.drawTexture(RenderLayer::getGuiTextured, skin, 0, y, 8, 8, 40, 8, 8, 8, 64, 64);
}

private GameProfile getSender(IChatHudLine line, String text) {
Expand Down

0 comments on commit f481582

Please sign in to comment.