Skip to content

Commit

Permalink
Merge branch 'RecursivePineapple:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
RecursivePineapple authored Feb 20, 2025
2 parents 17387ae + a44016a commit 68a9154
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
import gregtech.api.interfaces.metatileentity.IMetaTileEntity;
import gregtech.api.interfaces.tileentity.IGregTechTileEntity;
import gregtech.api.interfaces.tileentity.IHasInventory;
import gregtech.api.metatileentity.implementations.MTEMultiBlockBase;
import gregtech.common.tileentities.machines.MTEHatchOutputBusME;
import gregtech.common.tileentities.machines.MTEHatchOutputME;

Expand Down Expand Up @@ -40,6 +41,7 @@ private boolean canHandleImpl(IInventory inv) {
if (imte instanceof MTEHatchOutputBusME) return true;
if (imte instanceof MTEHatchOutputME) return true;
if (imte instanceof MTEHatchRack) return true;
if (imte instanceof MTEMultiBlockBase) return true;
}

return false;
Expand Down

0 comments on commit 68a9154

Please sign in to comment.