mirror of
https://github.com/Creators-of-Create/Create.git
synced 2024-11-13 05:21:46 +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) {
|
||||
super(properties);
|
||||
registerDefaultState(super.defaultBlockState()
|
||||
.setValue(WATERLOGGED, false)
|
||||
.setValue(TOP, false)
|
||||
.setValue(BOTTOM, false));
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue