Barrel block model fix

This commit is contained in:
paulevsGitch 2021-06-21 21:43:01 +03:00
parent ce4f3f329d
commit e60f8f7d9d
2 changed files with 3 additions and 3 deletions

View file

@ -8,7 +8,7 @@ yarn_mappings=6
loader_version=0.11.3
# Mod Properties
mod_version = 0.1.42
mod_version = 0.1.43
maven_group = ru.bclib
archives_base_name = bclib

View file

@ -130,8 +130,8 @@ public class BaseBarrelBlock extends BarrelBlock implements BlockModelProvider {
case EAST: rotation = BlockModelRotation.X90_Y90; break;
case SOUTH: rotation = BlockModelRotation.X90_Y180; break;
case WEST: rotation = BlockModelRotation.X90_Y270; break;
case DOWN:
default: rotation = BlockModelRotation.X180_Y0; break;
case DOWN: rotation = BlockModelRotation.X180_Y0; break;
default: break;
}
return ModelsHelper.createMultiVariant(modelId, rotation.getRotation(), false);
}