add missing method to baseblock

This commit is contained in:
Jesse Boyd
2019-07-18 17:00:33 +10:00
parent be8213d8ee
commit 1bc35eb59a

View File

@ -299,4 +299,8 @@ public class BaseBlock implements BlockStateHolder<BaseBlock>, TileEntityBlock {
return blockState.getAsString();
// }
}
public BlockState toBlockState() {
return blockState;
}
}