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

	return shape;
}