Fixed GirderEncasedShaftBlock's default blockstate

- GirderEncasedShaftBlock was missing entries for WATERLOGGED, TOP and BOTTOM in its default blockstate
- Fixes #4550
This commit is contained in:
caelwarner 2023-03-14 14:26:28 -07:00
parent ce955e9fcd
commit c2977bbfff
No known key found for this signature in database
GPG key ID: 514BEF5EADE889FF

View file

@ -44,6 +44,10 @@ public class GirderEncasedShaftBlock extends HorizontalAxisKineticBlock
public GirderEncasedShaftBlock(Properties properties) {
super(properties);
registerDefaultState(super.defaultBlockState()
.setValue(WATERLOGGED, false)
.setValue(TOP, false)
.setValue(BOTTOM, false));
}
@Override