1.7.10 Deprecations.

This commit is contained in:
AlgorithmX2 2014-06-28 20:26:29 -05:00
parent 9191d8d29e
commit 8dc2c04afd
2 changed files with 2 additions and 1 deletions

View file

@ -669,7 +669,7 @@ public class AEBaseBlock extends BlockContainer implements IAEFeature
}
}
if ( id.removedByPlayer( w, player, x, y, z ) )
if ( id.removedByPlayer( w, player, x, y, z, false ) )
{
List<ItemStack> l = new ArrayList<ItemStack>();
for (ItemStack iss : drops)

View file

@ -271,6 +271,7 @@ public class BlockCableBus extends AEBaseBlock implements IRedNetConnection
return cb( world, x, y, z ).isEmpty();
}
@SuppressWarnings("deprecation")
@Override
public boolean removedByPlayer(World world, EntityPlayer player, int x, int y, int z)
{