mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-23 21:38:00 +01:00
Fix for weather vane selection box
This commit is contained in:
parent
2f6ef0d9cf
commit
3f27c2e920
1 changed files with 3 additions and 6 deletions
|
@ -20,10 +20,10 @@ import net.minecraft.world.BlockView;
|
|||
import net.minecraft.world.World;
|
||||
|
||||
public class WeatherVaneBlock extends BlockWithEntity {
|
||||
/*private static final VoxelShape SHAPE = VoxelShapes.union(
|
||||
private static final VoxelShape SHAPE = VoxelShapes.union(
|
||||
Block.createCuboidShape(7.5F, 0, 7.5F, 8.5F, 14, 8.5F),
|
||||
Block.createCuboidShape(7, 0, 7, 9, 1, 9)
|
||||
);*/
|
||||
);
|
||||
|
||||
protected WeatherVaneBlock(Settings settings) {
|
||||
super(settings);
|
||||
|
@ -32,10 +32,7 @@ public class WeatherVaneBlock extends BlockWithEntity {
|
|||
@Deprecated
|
||||
@Override
|
||||
public VoxelShape getOutlineShape(BlockState state, BlockView world, BlockPos pos, ShapeContext context) {
|
||||
return VoxelShapes.union(
|
||||
Block.createCuboidShape(7.5F, 0, 7.5F, 8.5F, 14, 8.5F),
|
||||
Block.createCuboidShape(7, 0, 7, 9, 1, 9)
|
||||
);
|
||||
return SHAPE;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue