mirror of
https://github.com/Creators-of-Create/Create.git
synced 2025-01-27 05:18:08 +01:00
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:
parent
ce955e9fcd
commit
c2977bbfff
1 changed files with 4 additions and 0 deletions
|
@ -44,6 +44,10 @@ public class GirderEncasedShaftBlock extends HorizontalAxisKineticBlock
|
||||||
|
|
||||||
public GirderEncasedShaftBlock(Properties properties) {
|
public GirderEncasedShaftBlock(Properties properties) {
|
||||||
super(properties);
|
super(properties);
|
||||||
|
registerDefaultState(super.defaultBlockState()
|
||||||
|
.setValue(WATERLOGGED, false)
|
||||||
|
.setValue(TOP, false)
|
||||||
|
.setValue(BOTTOM, false));
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in a new issue