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:
AlgorithmX2
2014-02-16 12:41:45 -06:00
parent ca738e6065
commit dc095749b7
15 changed files with 72 additions and 45 deletions
-9
View File
@@ -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;
}
}