Skip to content
This repository has been archived by the owner on Mar 8, 2024. It is now read-only.

Commit

Permalink
spotlessApply (#393)
Browse files Browse the repository at this point in the history
Co-authored-by: GitHub GTNH Actions <>
  • Loading branch information
github-actions[bot] authored Feb 19, 2024
1 parent 6e1f13b commit a21009f
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@

import javax.annotation.Nonnull;

import gregtech.api.util.GT_Recipe;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.entity.player.EntityPlayerMP;
import net.minecraft.item.ItemStack;
Expand Down Expand Up @@ -85,6 +84,7 @@
import gregtech.api.render.TextureFactory;
import gregtech.api.util.GT_LanguageManager;
import gregtech.api.util.GT_Multiblock_Tooltip_Builder;
import gregtech.api.util.GT_Recipe;
import gregtech.api.util.GT_Utility;
import mcp.mobius.waila.api.IWailaConfigHandler;
import mcp.mobius.waila.api.IWailaDataAccessor;
Expand Down Expand Up @@ -172,8 +172,7 @@ protected GT_Multiblock_Tooltip_Builder createTooltip() {
+ EnumChatFormatting.GRAY)
.addInfo("Recipe tier is hatch tier - 1")
.addInfo("This mode supports Crafting Input Buffer/Bus and allows bus separation").addInfo("")
.addSeparator()
.addInfo(BW_Tooltip_Reference.TT_BLUEPRINT)
.addSeparator().addInfo(BW_Tooltip_Reference.TT_BLUEPRINT)
.beginVariableStructureBlock(2, 7, 3, 3, 3, 3, false)
.addStructureInfo("From Bottom to Top, Left to Right")
.addStructureInfo(
Expand Down Expand Up @@ -292,7 +291,7 @@ protected ProcessingLogic createProcessingLogic() {
@Override
@Nonnull
protected CheckRecipeResult validateRecipe(@Nonnull GT_Recipe recipe) {
//limit CA mode recipes to hatch tier - 1
// limit CA mode recipes to hatch tier - 1
if (GT_TileEntity_CircuitAssemblyLine.this.mode == 1
&& recipe.mEUt > GT_TileEntity_CircuitAssemblyLine.this.getMaxInputVoltage() / 4) {
return CheckRecipeResultRegistry.NO_RECIPE;
Expand Down

0 comments on commit a21009f

Please sign in to comment.