Fix: GregTech Axe don't harvest blocks that have not harvest tool (harvest tool is "null") (#1382)
This commit is contained in:
parent
d553daacd6
commit
c0d544e555
1 changed files with 1 additions and 1 deletions
|
@ -81,7 +81,7 @@ public class GT_Tool_Axe
|
|||
|
||||
public boolean isMinableBlock(Block aBlock, byte aMetaData) {
|
||||
String tTool = aBlock.getHarvestTool(aMetaData);
|
||||
return ((tTool != null) && (tTool.equals("axe"))) || (aBlock.getMaterial() == Material.wood);
|
||||
return tTool == null || tTool.equals("axe") || (aBlock.getMaterial() == Material.wood);
|
||||
}
|
||||
|
||||
public int convertBlockDrops(List<ItemStack> aDrops, ItemStack aStack, EntityPlayer aPlayer, Block aBlock, int aX, int aY, int aZ, byte aMetaData, int aFortune, boolean aSilkTouch, BlockEvent.HarvestDropsEvent aEvent) {
|
||||
|
|
Loading…
Reference in a new issue