Removed ability to put External Storages on Refined Storage network blocks

This commit is contained in:
Raoul Van den Berge
2016-11-10 22:14:07 +01:00
parent 4812ce9d18
commit cb269b162d
2 changed files with 3 additions and 1 deletions

View File

@@ -9,6 +9,7 @@
- Fixed Wrench working when player is not sneaking (raoulvdberge)
- Fixed External Storage cache counting items up when extracting (raoulvdberge)
- Fixed External Storage cache not working properly on Compacting Drawers (raoulvdberge)
- Removed ability to put External Storages on Refined Storage network blocks (raoulvdberge)
### 1.2.3
- Fixed fluid cache updating wrongly (raoulvdberge)

View File

@@ -15,6 +15,7 @@ import com.raoulvdberge.refinedstorage.inventory.ItemHandlerBasic;
import com.raoulvdberge.refinedstorage.inventory.ItemHandlerFluid;
import com.raoulvdberge.refinedstorage.tile.IStorageGui;
import com.raoulvdberge.refinedstorage.tile.TileMultipartNode;
import com.raoulvdberge.refinedstorage.tile.TileNode;
import com.raoulvdberge.refinedstorage.tile.config.*;
import com.raoulvdberge.refinedstorage.tile.data.ITileDataProducer;
import com.raoulvdberge.refinedstorage.tile.data.TileDataParameter;
@@ -245,7 +246,7 @@ public class TileExternalStorage extends TileMultipartNode implements IItemStora
itemStorages.add(new ItemStorageDrawer(this, (IDrawer) facing));
} else if (facing instanceof IDeepStorageUnit) {
itemStorages.add(new ItemStorageDSU(this, (IDeepStorageUnit) facing));
} else {
} else if (!(facing instanceof TileNode)) {
IItemHandler itemHandler = RSUtils.getItemHandler(facing, getDirection().getOpposite());
if (itemHandler != null) {