Fixed right clicking berry bushes with a block in hand

This commit is contained in:
Adubbz 2016-03-31 23:25:31 +11:00
parent 334b746713
commit 82d219530e

View file

@ -472,12 +472,8 @@ public class BlockBOPPlant extends BlockBOPDecoration implements IShearable
{
berries.onCollideWithPlayer(playerIn);
}
return true;
}
break;
default:
break;
return true;
}
return super.onBlockActivated(worldIn, pos, state, playerIn, hand, heldItem, side, hitX, hitY, hitZ);
}