Pillars fix

This commit is contained in:
paulevsGitch 2021-06-11 23:25:19 +03:00
parent 74196a9894
commit 93094e0390

View file

@ -67,7 +67,8 @@ public class ModelsHelper {
BlockModelRotation rotation = BlockModelRotation.X0_Y0; BlockModelRotation rotation = BlockModelRotation.X0_Y0;
switch (axis) { switch (axis) {
case X: rotation = BlockModelRotation.X90_Y90; break; case X: rotation = BlockModelRotation.X90_Y90; break;
case Z: default: rotation = BlockModelRotation.X90_Y0; break; case Z: rotation = BlockModelRotation.X90_Y0; break;
default: break;
} }
return createMultiVariant(resourceLocation, rotation.getRotation(), false); return createMultiVariant(resourceLocation, rotation.getRotation(), false);
} }