public VoxelShape makeShape(){
	VoxelShape shape = VoxelShapes.empty();
	shape = VoxelShapes.combine(shape, VoxelShapes.cuboid(0.25, 0, 0, 0.75, 0.5, 0.0625), BooleanBiFunction.OR);
	shape = VoxelShapes.combine(shape, VoxelShapes.cuboid(0.25, 0.375, 0.0625, 0.75, 0.5, 0.25), BooleanBiFunction.OR);
	shape = VoxelShapes.combine(shape, VoxelShapes.cuboid(0.25, 0.3125, 0.0625, 0.625, 0.375, 0.1875), BooleanBiFunction.OR);
	shape = VoxelShapes.combine(shape, VoxelShapes.cuboid(0.625, 0, 0.0625, 0.75, 0.375, 0.25), BooleanBiFunction.OR);
	shape = VoxelShapes.combine(shape, VoxelShapes.cuboid(0.25, 0, 0.0625, 0.375, 0.375, 0.25), BooleanBiFunction.OR);
	shape = VoxelShapes.combine(shape, VoxelShapes.cuboid(0.5625, 0, 0.0625, 0.625, 0.3125, 0.1875), BooleanBiFunction.OR);
	shape = VoxelShapes.combine(shape, VoxelShapes.cuboid(0.375, 0, 0.0625, 0.4375, 0.3125, 0.1875), BooleanBiFunction.OR);

	return shape;
}