Auto format code
This commit is contained in:
parent
c0aab7f37a
commit
774fec221e
65 changed files with 100 additions and 125 deletions
|
@ -29,7 +29,10 @@ import net.minecraft.tileentity.TileEntity;
|
|||
import net.minecraft.util.math.BlockPos;
|
||||
import net.minecraft.world.World;
|
||||
import net.minecraftforge.fml.common.network.IGuiHandler;
|
||||
import techreborn.client.container.*;
|
||||
import techreborn.client.container.ContainerAESU;
|
||||
import techreborn.client.container.ContainerDestructoPack;
|
||||
import techreborn.client.container.ContainerLESU;
|
||||
import techreborn.client.container.IContainerProvider;
|
||||
import techreborn.client.gui.*;
|
||||
import techreborn.client.gui.autocrafting.GuiAutoCrafting;
|
||||
import techreborn.tiles.*;
|
||||
|
@ -38,9 +41,9 @@ import techreborn.tiles.generator.*;
|
|||
import techreborn.tiles.idsu.TileInterdimensionalSU;
|
||||
import techreborn.tiles.lesu.TileLapotronicSU;
|
||||
import techreborn.tiles.multiblock.*;
|
||||
import techreborn.tiles.storage.TileHighVoltageSU;
|
||||
import techreborn.tiles.storage.TileLowVoltageSU;
|
||||
import techreborn.tiles.storage.TileMediumVoltageSU;
|
||||
import techreborn.tiles.storage.TileHighVoltageSU;
|
||||
import techreborn.tiles.teir1.*;
|
||||
|
||||
public class GuiHandler implements IGuiHandler {
|
||||
|
|
|
@ -80,7 +80,7 @@ public class GuiAutoCrafting extends GuiBase {
|
|||
int mX = mouseX - getGuiLeft();
|
||||
int mY = mouseY - getGuiTop();
|
||||
|
||||
if(recipe != null && !tileAutoCraftingTable.customRecipe){
|
||||
if (recipe != null && !tileAutoCraftingTable.customRecipe) {
|
||||
if (builder.isInRect(91, 66, 23, 23, mX, mY)) {
|
||||
List<String> list = new ArrayList<>();
|
||||
list.add("Click to clear");
|
||||
|
@ -149,7 +149,7 @@ public class GuiAutoCrafting extends GuiBase {
|
|||
drawString("Inventory", 8, 82, 4210752, layer);
|
||||
|
||||
IRecipe recipe = tileAutoCraftingTable.getIRecipe();
|
||||
if (recipe != null && ! tileAutoCraftingTable.customRecipe) {
|
||||
if (recipe != null && !tileAutoCraftingTable.customRecipe) {
|
||||
renderRecipe(recipe, guiLeft + 91, 66 + guiTop);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -15,7 +15,6 @@ public class GuiAutoCraftingRecipeSlector extends GuiRecipeBook {
|
|||
|
||||
GuiAutoCrafting guiAutoCrafting;
|
||||
|
||||
|
||||
@Override
|
||||
public void initVisuals(boolean p_193014_1_, InventoryCrafting p_193014_2_) {
|
||||
super.initVisuals(p_193014_1_, p_193014_2_);
|
||||
|
|
|
@ -38,7 +38,6 @@ import net.minecraft.util.EnumFacing;
|
|||
import net.minecraft.util.ResourceLocation;
|
||||
import net.minecraft.world.World;
|
||||
import net.minecraftforge.client.model.*;
|
||||
import net.minecraftforge.common.model.IModelPart;
|
||||
import net.minecraftforge.common.model.IModelState;
|
||||
import net.minecraftforge.common.model.TRSRTransformation;
|
||||
import net.minecraftforge.fluids.Fluid;
|
||||
|
@ -99,7 +98,6 @@ public class ModelDynamicCell implements IModel {
|
|||
return ImmutableList.of(baseTexture, emptyTexture);
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public IBakedModel bake(IModelState state, VertexFormat format, Function<ResourceLocation, TextureAtlasSprite> bakedTextureGetter) {
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue