mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-13 03:49:09 +01:00
Make the leaf blower work on all shearable things
This commit is contained in:
parent
063459ed93
commit
919ebfde35
1 changed files with 2 additions and 1 deletions
|
@ -29,6 +29,7 @@ import net.minecraft.util.SoundCategory;
|
|||
import net.minecraft.util.math.BlockPos;
|
||||
import net.minecraft.util.math.MathHelper;
|
||||
import net.minecraft.world.World;
|
||||
import net.minecraftforge.common.IShearable;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collections;
|
||||
|
@ -105,7 +106,7 @@ public class ItemLeafBlower extends ItemBase implements IDisplayStandItem{
|
|||
//The current Block to break
|
||||
BlockPos pos = new BlockPos(x+reachX, y+reachY, z+reachZ);
|
||||
Block block = world.getBlockState(pos).getBlock();
|
||||
if(block != null && (block instanceof BlockBush || (this.isAdvanced && block.isLeaves(world.getBlockState(pos), world, pos)))){
|
||||
if(block != null && ((block instanceof BlockBush || block instanceof IShearable) && (this.isAdvanced || !block.isLeaves(world.getBlockState(pos), world, pos)))){
|
||||
breakPositions.add(pos);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue