public VoxelShape makeShape(){
	VoxelShape shape = VoxelShapes.empty();
	shape = VoxelShapes.join(shape, VoxelShapes.box(0.28125, 0, 0.1875, 0.59375, 0.5625, 0.8125), IBooleanFunction.OR);
	shape = VoxelShapes.join(shape, VoxelShapes.box(0.59375, 0.0625, 0.25, 0.71875, 0.4375, 0.75), IBooleanFunction.OR);
	shape = VoxelShapes.join(shape, VoxelShapes.box(0.28125, 0.5625, 0.1875, 0.59375, 0.75, 0.8125), IBooleanFunction.OR);
	shape = VoxelShapes.join(shape, VoxelShapes.box(0.21875, 0.1875, 0.25, 0.28125, 0.6875, 0.3125), IBooleanFunction.OR);
	shape = VoxelShapes.join(shape, VoxelShapes.box(0.21875, 0.1875, 0.625, 0.28125, 0.6875, 0.6875), IBooleanFunction.OR);

	return shape;
}