public VoxelShape makeShape(){
	VoxelShape shape = VoxelShapes.empty();
	shape = VoxelShapes.combine(shape, VoxelShapes.cuboid(0, 0.5, 0, 1, 1, 0.0625), BooleanBiFunction.OR);
	shape = VoxelShapes.combine(shape, VoxelShapes.cuboid(0, 0.875, 0.0625, 1, 1, 0.25), BooleanBiFunction.OR);
	shape = VoxelShapes.combine(shape, VoxelShapes.cuboid(0, 0.75, 0.0625, 1, 0.875, 0.1875), BooleanBiFunction.OR);
	shape = VoxelShapes.combine(shape, VoxelShapes.cuboid(0, 0.625, 0.0625, 1, 0.75, 0.125), BooleanBiFunction.OR);

	return shape;
}