Skip to content

Commit

Permalink
sample
Browse files Browse the repository at this point in the history
  • Loading branch information
trainvoi committed Oct 21, 2024
1 parent a81d2eb commit e31457a
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
import gregtech.common.blocks.BlockMetalCasing.MetalCasingType;
import gregtech.common.blocks.BlockTurbineCasing.TurbineCasingType;
import gregtech.common.blocks.MetaBlocks;
import net.minecraft.block.state.BlockWorldState;
import net.minecraft.block.state.IBlockState;
import net.minecraft.client.resources.I18n;
import net.minecraft.item.ItemStack;
Expand All @@ -38,7 +37,7 @@ public class MetaTileEntityLargeFluidPump extends RecipeMapMultiblockController
public MetaTileEntityLargeFluidPump(ResourceLocation metaTileEntityId) {
super(metaTileEntityId, SuSyRecipeMaps.PUMPING_RECIPES);

this.recipeMapWorkable = new BiomeRecipeLogic(this);
this.recipeMapWorkable = new LargePumpRecipeLogic(this);
}

public MetaTileEntity createMetaTileEntity(IGregTechTileEntity tileEntity) {
Expand Down Expand Up @@ -103,9 +102,9 @@ protected ICubeRenderer getFrontOverlay() {
* But generally speaking if you do not plan to re-use this, making it an inner class should be fine.
* CEu itself has many such cases.
*/
public static class BiomeRecipeLogic extends MultiblockRecipeLogic {
public static class LargePumpRecipeLogic extends MultiblockRecipeLogic {

public BiomeRecipeLogic(RecipeMapMultiblockController tileEntity) {
public LargePumpRecipeLogic(RecipeMapMultiblockController tileEntity) {
super(tileEntity, true);
}

Expand Down

0 comments on commit e31457a

Please sign in to comment.