Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
reobf committed Mar 2, 2025
1 parent f742a07 commit f71064a
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
import gregtech.api.metatileentity.implementations.MTEMultiBlockBase;
import gregtech.api.recipe.check.CheckRecipeResult;
import gregtech.api.util.GTUtility;
import gregtech.api.util.ValidMTEList;
import gregtech.common.tileentities.machines.IDualInputHatch;
import reobf.proghatches.gt.metatileentity.util.IRecipeProcessingAwareDualHatch;

Expand Down Expand Up @@ -99,7 +100,7 @@ public void startRecipeProcessing(CallbackInfo c) {


@SuppressWarnings({ "unchecked", "rawtypes" })
List<IDualInputHatch> l=(List<IDualInputHatch>)(List) GTUtility.validMTEList((List<MetaTileEntity>)(Object)(cast().mDualInputHatches));
Iterable<IDualInputHatch> l=(Iterable<IDualInputHatch>)(Iterable) GTUtility.validMTEList((List<MetaTileEntity>)(Object)(cast().mDualInputHatches));
for (IDualInputHatch hatch:l) {

if (hatch instanceof IRecipeProcessingAwareDualHatch) {
Expand Down

0 comments on commit f71064a

Please sign in to comment.