mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 15:18:34 +01:00
parent
7c0ca04e85
commit
ee99b1fccc
2 changed files with 4 additions and 2 deletions
|
@ -23,7 +23,7 @@ if(hasProperty('buildnumber')){
|
|||
}
|
||||
|
||||
minecraft {
|
||||
version = "1.11-13.19.0.2180"
|
||||
version = "1.11-13.19.1.2188"
|
||||
runDir = "idea"
|
||||
|
||||
mappings = "snapshot_20161126"
|
||||
|
|
|
@ -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,8 @@ 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