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 (state.getBlock() instanceof BlockDirt) {
if (worldIn.getBlockState(pos.up()).getMaterial() == Material.AIR) { if (worldIn.getBlockState(pos.up()).getMaterial() == Material.AIR) {
for (EnumFacing dir : EnumFacing.HORIZONTALS) { worldIn.setBlockState(pos, Blocks.GRASS.getDefaultState());
if (worldIn.getBlockState(pos.offset(dir)).getBlock() == Blocks.GRASS) { damage = 5;
worldIn.setBlockState(pos, Blocks.GRASS.getDefaultState());
damage = 5;
break;
}
}
} }
} else { } else {
int range = player.isSneaking() ? 0 : 1; int range = player.isSneaking() ? 0 : 1;