Removed ability to put External Storages on Refined Storage network blocks
This commit is contained in:
@@ -9,6 +9,7 @@
|
|||||||
- Fixed Wrench working when player is not sneaking (raoulvdberge)
|
- Fixed Wrench working when player is not sneaking (raoulvdberge)
|
||||||
- Fixed External Storage cache counting items up when extracting (raoulvdberge)
|
- Fixed External Storage cache counting items up when extracting (raoulvdberge)
|
||||||
- Fixed External Storage cache not working properly on Compacting Drawers (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
|
### 1.2.3
|
||||||
- Fixed fluid cache updating wrongly (raoulvdberge)
|
- Fixed fluid cache updating wrongly (raoulvdberge)
|
||||||
|
|||||||
@@ -15,6 +15,7 @@ import com.raoulvdberge.refinedstorage.inventory.ItemHandlerBasic;
|
|||||||
import com.raoulvdberge.refinedstorage.inventory.ItemHandlerFluid;
|
import com.raoulvdberge.refinedstorage.inventory.ItemHandlerFluid;
|
||||||
import com.raoulvdberge.refinedstorage.tile.IStorageGui;
|
import com.raoulvdberge.refinedstorage.tile.IStorageGui;
|
||||||
import com.raoulvdberge.refinedstorage.tile.TileMultipartNode;
|
import com.raoulvdberge.refinedstorage.tile.TileMultipartNode;
|
||||||
|
import com.raoulvdberge.refinedstorage.tile.TileNode;
|
||||||
import com.raoulvdberge.refinedstorage.tile.config.*;
|
import com.raoulvdberge.refinedstorage.tile.config.*;
|
||||||
import com.raoulvdberge.refinedstorage.tile.data.ITileDataProducer;
|
import com.raoulvdberge.refinedstorage.tile.data.ITileDataProducer;
|
||||||
import com.raoulvdberge.refinedstorage.tile.data.TileDataParameter;
|
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));
|
itemStorages.add(new ItemStorageDrawer(this, (IDrawer) facing));
|
||||||
} else if (facing instanceof IDeepStorageUnit) {
|
} else if (facing instanceof IDeepStorageUnit) {
|
||||||
itemStorages.add(new ItemStorageDSU(this, (IDeepStorageUnit) facing));
|
itemStorages.add(new ItemStorageDSU(this, (IDeepStorageUnit) facing));
|
||||||
} else {
|
} else if (!(facing instanceof TileNode)) {
|
||||||
IItemHandler itemHandler = RSUtils.getItemHandler(facing, getDirection().getOpposite());
|
IItemHandler itemHandler = RSUtils.getItemHandler(facing, getDirection().getOpposite());
|
||||||
|
|
||||||
if (itemHandler != null) {
|
if (itemHandler != null) {
|
||||||
|
|||||||
Reference in New Issue
Block a user