Skip to content

Commit

Permalink
Barrel block model fix
Browse files Browse the repository at this point in the history
  • Loading branch information
paulevsGitch committed Jun 21, 2021
1 parent ce4f3f3 commit e60f8f7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions src/main/java/ru/bclib/blocks/BaseBarrelBlock.java
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,8 @@ public UnbakedModel getModelVariant(ResourceLocation stateId, BlockState blockSt
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);
}
Expand Down

0 comments on commit e60f8f7

Please sign in to comment.