Skip to content

Commit a44016a

Browse files
Allow insertions into multi controller slot (#52)
1 parent efe3e07 commit a44016a

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/main/java/com/recursive_pineapple/matter_manipulator/common/utils/InventoryAdapter.java

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
import gregtech.api.interfaces.metatileentity.IMetaTileEntity;
1414
import gregtech.api.interfaces.tileentity.IGregTechTileEntity;
1515
import gregtech.api.interfaces.tileentity.IHasInventory;
16+
import gregtech.api.metatileentity.implementations.MTEMultiBlockBase;
1617
import gregtech.common.tileentities.machines.MTEHatchOutputBusME;
1718
import gregtech.common.tileentities.machines.MTEHatchOutputME;
1819

@@ -40,6 +41,7 @@ private boolean canHandleImpl(IInventory inv) {
4041
if (imte instanceof MTEHatchOutputBusME) return true;
4142
if (imte instanceof MTEHatchOutputME) return true;
4243
if (imte instanceof MTEHatchRack) return true;
44+
if (imte instanceof MTEMultiBlockBase) return true;
4345
}
4446

4547
return false;

0 commit comments

Comments
 (0)