1.7.10 deprecations.

This commit is contained in:
AlgorithmX2 2014-06-28 17:32:20 -05:00
parent 9191d8d29e
commit 1cbda9e7ae
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>(); List<ItemStack> l = new ArrayList<ItemStack>();
for (ItemStack iss : drops) for (ItemStack iss : drops)

View file

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