Disable loot table for cable bus block (drops must be handled in tile entity to drop all connected parts).

This commit is contained in:
Sebastian Hartte
2020-06-14 12:56:48 +02:00
parent 2003506fd1
commit 5ec07dc4fe
@@ -80,7 +80,7 @@ public class BlockCableBus extends AEBaseTileBlock<TileCableBus> /* FIXME implem
private static final ICableBusContainer NULL_CABLE_BUS = new NullCableBusContainer();
public BlockCableBus() {
super(defaultProps(AEGlassMaterial.INSTANCE).notSolid());
super(defaultProps(AEGlassMaterial.INSTANCE).notSolid().noDrops());
}
@Override