Skip to content

Commit

Permalink
fix: chimera sitting location
Browse files Browse the repository at this point in the history
Closes #1158
  • Loading branch information
klikli-dev committed Jul 22, 2024
1 parent 7559058 commit 4bd5383
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public ChimeraFamiliarRenderer(EntityRendererProvider.Context context) {
public void render(ChimeraFamiliarEntity pEntity, float pEntityYaw, float pPartialTicks, PoseStack pMatrixStack, MultiBufferSource pBuffer, int pPackedLight) {
pMatrixStack.pushPose();
if (pEntity.isSitting())
pMatrixStack.translate(0, -0.23, 0);
pMatrixStack.translate(0, -0.23 * pEntity.getScale(), 0);
super.render(pEntity, pEntityYaw, pPartialTicks, pMatrixStack, pBuffer, pPackedLight);
pMatrixStack.popPose();
}
Expand Down

0 comments on commit 4bd5383

Please sign in to comment.