Fixed Issue with DSU API,
Re-added support for MJ Re-added support for pipe Re-added support for BC-Facades.
This commit is contained in:
@@ -1,6 +1,5 @@
|
||||
package appeng.me.storage;
|
||||
|
||||
import net.minecraft.inventory.IInventory;
|
||||
import net.minecraft.tileentity.TileEntity;
|
||||
import net.minecraftforge.common.util.ForgeDirection;
|
||||
import appeng.api.implementations.tiles.ITileStorageMonitorable;
|
||||
@@ -21,9 +20,6 @@ public class AEExternalHandler implements IExternalStorageHandler
|
||||
if ( channel == StorageChannel.ITEMS && te instanceof ITileStorageMonitorable )
|
||||
return true;
|
||||
|
||||
if ( channel == StorageChannel.ITEMS && te instanceof IInventory )
|
||||
return true;
|
||||
|
||||
return te instanceof TileCondenser;
|
||||
}
|
||||
|
||||
@@ -58,11 +54,6 @@ public class AEExternalHandler implements IExternalStorageHandler
|
||||
}
|
||||
}
|
||||
|
||||
if ( channel == StorageChannel.ITEMS && te instanceof IInventory )
|
||||
{
|
||||
return new MEMonitorIInventory( (IInventory) te, d );
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user