diff options
Diffstat (limited to 'src/main/java/gregtech/common/tileentities/machines/IRecipeProcessingAwareHatch.java')
-rw-r--r-- | src/main/java/gregtech/common/tileentities/machines/IRecipeProcessingAwareHatch.java | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/main/java/gregtech/common/tileentities/machines/IRecipeProcessingAwareHatch.java b/src/main/java/gregtech/common/tileentities/machines/IRecipeProcessingAwareHatch.java index c7a97ce969..eaceb1a247 100644 --- a/src/main/java/gregtech/common/tileentities/machines/IRecipeProcessingAwareHatch.java +++ b/src/main/java/gregtech/common/tileentities/machines/IRecipeProcessingAwareHatch.java @@ -1,10 +1,11 @@ package gregtech.common.tileentities.machines; -import gregtech.api.metatileentity.implementations.GT_MetaTileEntity_MultiBlockBase; +import gregtech.api.metatileentity.implementations.MTEHatch; +import gregtech.api.metatileentity.implementations.MTEMultiBlockBase; import gregtech.api.recipe.check.CheckRecipeResult; /** - * Implement this interface for {@link gregtech.api.metatileentity.implementations.GT_MetaTileEntity_Hatch} + * Implement this interface for {@link MTEHatch} * if it does special stuff while multiblock controller is processing recipe. */ public interface IRecipeProcessingAwareHatch { @@ -22,5 +23,5 @@ public interface IRecipeProcessingAwareHatch { * @return Result of the process of this method. {@code !wasSuccessful()} means the returned result should * overwrite the result calculated on multiblock whatever the reason is. */ - CheckRecipeResult endRecipeProcessing(GT_MetaTileEntity_MultiBlockBase controller); + CheckRecipeResult endRecipeProcessing(MTEMultiBlockBase controller); } |