Skip to content

Commit fde0dfa

Browse files
committed
fix: chimera sitting location
1 parent 291e594 commit fde0dfa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/klikli_dev/occultism/client/render/entity/ChimeraFamiliarRenderer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public ChimeraFamiliarRenderer(EntityRendererProvider.Context context) {
4646
public void render(ChimeraFamiliarEntity pEntity, float pEntityYaw, float pPartialTicks, PoseStack pMatrixStack, MultiBufferSource pBuffer, int pPackedLight) {
4747
pMatrixStack.pushPose();
4848
if (pEntity.isSitting())
49-
pMatrixStack.translate(0, -0.23 * pEntity.getScale(), 0);
49+
pMatrixStack.translate(0, -0.14 * pEntity.getScale(), 0);
5050
super.render(pEntity, pEntityYaw, pPartialTicks, pMatrixStack, pBuffer, pPackedLight);
5151
pMatrixStack.popPose();
5252
}

0 commit comments

Comments
 (0)