Disable extracting invisible items from Storage Buses altogether
Reverts d82cdabc6d, closes #408
Allows Cells to report/extract lingering unpartitioned items
This commit is contained in:
@@ -134,4 +134,14 @@ public class BasicCellInventoryHandler<T extends IAEStack<T>> extends MEInventor
|
||||
NBTTagCompound openNbtData() {
|
||||
return Platform.openNbtData(this.getCellInv().getItemStack());
|
||||
}
|
||||
|
||||
@Override
|
||||
protected boolean canExtract(T request) {
|
||||
return this.hasReadAccess();
|
||||
}
|
||||
|
||||
@Override
|
||||
protected boolean shouldItemBeAvailable(T request) {
|
||||
return this.hasReadAccess();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user