Rifts aren't automatically waterlogged.

This commit is contained in:
MalekiRe 2021-06-13 21:46:45 -07:00
parent a0e694784f
commit a46fa67310

View file

@ -24,6 +24,8 @@ public abstract class WaterLoggableBlockWithEntity extends BlockWithEntity imple
public static final BooleanProperty WATERLOGGED = Properties.WATERLOGGED; public static final BooleanProperty WATERLOGGED = Properties.WATERLOGGED;
protected WaterLoggableBlockWithEntity(Settings settings) { protected WaterLoggableBlockWithEntity(Settings settings) {
super(settings); super(settings);
setDefaultState(this.stateManager.getDefaultState().with(WATERLOGGED, false));
} }
@Override @Override
protected void appendProperties(StateManager.Builder<Block, BlockState> builder) { protected void appendProperties(StateManager.Builder<Block, BlockState> builder) {