add size limit to player images
Some checks failed
Deploy App / docker (ubuntu-latest, 2.44.0, 17, 3.8.5) (push) Has been cancelled

This commit is contained in:
Lee
2024-04-11 07:14:13 +01:00
parent bfbaf34b24
commit 977a1dcbc4
2 changed files with 6 additions and 2 deletions

View File

@ -50,8 +50,8 @@ public class IsometricHeadRenderer extends SkinRenderer {
x = xOffset;
y = -0.5;
z = zOffset;
// The head is offset by 1 pixel for whatever reason
drawPart(graphics, headTop, HEAD_TRANSFORM, y - z, x + z, headTop.getWidth(), headTop.getHeight() + 1);
// The head is offset by 2 pixels for whatever reason
drawPart(graphics, headTop, HEAD_TRANSFORM, y - z, x + z, headTop.getWidth(), headTop.getHeight() + 2);
// Draw the front of the head
x = xOffset + 8 * scale;