Revert "made the shovel only convert to grass if it's around grass already"

This reverts commit 8996cf9
This commit is contained in:
Ellpeck 2018-10-20 23:23:04 +02:00
parent 8996cf9690
commit 0d362ad36c

View file

@ -45,13 +45,8 @@ public class ItemShovelNA extends ItemSpade implements IModItem, IModelProvider
if (state.getBlock() instanceof BlockDirt) {
if (worldIn.getBlockState(pos.up()).getMaterial() == Material.AIR) {
for (EnumFacing dir : EnumFacing.HORIZONTALS) {
if (worldIn.getBlockState(pos.offset(dir)).getBlock() == Blocks.GRASS) {
worldIn.setBlockState(pos, Blocks.GRASS.getDefaultState());
damage = 5;
break;
}
}
worldIn.setBlockState(pos, Blocks.GRASS.getDefaultState());
damage = 5;
}
} else {
int range = player.isSneaking() ? 0 : 1;