Made shovels make path blocks instead of farm land

This commit is contained in:
Ellpeck 2016-06-03 22:35:01 +02:00
parent 7749e9f67d
commit 596d2d0175

View file

@ -49,6 +49,6 @@ public class ItemShovelAA extends ItemToolAA{
@Override
public EnumActionResult onItemUse(ItemStack stack, EntityPlayer playerIn, World worldIn, BlockPos pos, EnumHand hand, EnumFacing facing, float hitX, float hitY, float hitZ){
return Items.IRON_HOE.onItemUse(stack, playerIn, worldIn, pos, hand, facing, hitX, hitY, hitZ);
return Items.IRON_SHOVEL.onItemUse(stack, playerIn, worldIn, pos, hand, facing, hitX, hitY, hitZ);
}
}