Skip to content

Commit

Permalink
commit
Browse files Browse the repository at this point in the history
  • Loading branch information
trainvoi committed Oct 21, 2024
1 parent 4af84d0 commit 8f25b5c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ public static void init() {
FROTH_FLOTATION_TANK = registerMetaTileEntity(17008, new MetaTileEntityFrothFlotationTank(susyId("froth_flotation_tank")));
MULTI_STAGE_FLASH_DISTILLER = registerMetaTileEntity(17009, new MetaTileEntityMultiStageFlashDistiller(susyId("multi_stage_flash_distiller")));

LARGE_FLUID_PUMP = registerMetaTileEntity(17021, new MetaTileEntityLargeFluidPump(susyId("large_fluid_pump")));
LARGE_FLUID_PUMP = registerMetaTileEntity(17010, new MetaTileEntityLargeFluidPump(susyId("large_fluid_pump")));
OCEAN_PUMPER = registerMetaTileEntity(17011, new MetaTileEntityOceanPumper(susyId("ocean_pumper")));
HIGH_TEMPERATURE_DISTILLATION_TOWER = registerMetaTileEntity(17012, new MetaTileEntityHighTemperatureDistillationTower(susyId("high_temperature_distillation_tower")));
ROTARY_KILN = registerMetaTileEntity(17013, new MetaTileEntityRotaryKiln(susyId("rotary_kiln")));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,6 @@ public boolean isMultiblockPartWeatherResistant(@Nonnull IMultiblockPart part) {
return true;
}

/*public boolean checkHeightRequirement() {
return this.getPos().getY() == 64;
}*/


protected @NotNull BlockPattern createStructurePattern() {
return FactoryBlockPattern.start(RIGHT, FRONT, UP)
Expand Down Expand Up @@ -97,11 +93,6 @@ public void addInformation(ItemStack stack, @Nullable World player, @NotNull Lis
tooltip.add(TooltipHelper.RAINBOW_SLOW + I18n.format("gregtech.machine.perfect_oc", new Object[0]));
}

@Override
public void checkStructurePattern() {
super.checkStructurePattern();
}

@Nonnull
protected ICubeRenderer getFrontOverlay() {
return SusyTextures.OCEANIC_DRILL_OVERLAY;
Expand Down

0 comments on commit 8f25b5c

Please sign in to comment.