diff --git a/block/AEBaseBlock.java b/block/AEBaseBlock.java index b271f772f..7a2b60363 100644 --- a/block/AEBaseBlock.java +++ b/block/AEBaseBlock.java @@ -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 l = new ArrayList(); for (ItemStack iss : drops) diff --git a/block/networking/BlockCableBus.java b/block/networking/BlockCableBus.java index f79002efc..36b6db2d3 100644 --- a/block/networking/BlockCableBus.java +++ b/block/networking/BlockCableBus.java @@ -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) {