fixed style errors
This commit is contained in:
parent
cfb9095139
commit
a5b9a8870e
5 changed files with 13 additions and 13 deletions
common/buildcraft
core
silicon
|
@ -18,13 +18,13 @@ import buildcraft.core.DefaultProps;
|
|||
|
||||
public abstract class AdvancedSlot {
|
||||
|
||||
private static final ResourceLocation TEXTURE_SLOT = new ResourceLocation(
|
||||
"buildcraft", DefaultProps.TEXTURE_PATH_GUI + "/slot.png");
|
||||
|
||||
public int x, y;
|
||||
public GuiAdvancedInterface gui;
|
||||
public boolean drawBackround = false;
|
||||
|
||||
private static final ResourceLocation TEXTURE_SLOT = new ResourceLocation(
|
||||
"buildcraft", DefaultProps.TEXTURE_PATH_GUI + "/slot.png");
|
||||
|
||||
public AdvancedSlot(GuiAdvancedInterface gui, int x, int y) {
|
||||
this.x = x;
|
||||
this.y = y;
|
||||
|
|
|
@ -26,12 +26,12 @@ import buildcraft.core.robots.EntityRobot;
|
|||
import buildcraft.core.utils.NBTUtils;
|
||||
import buildcraft.core.utils.StringUtils;
|
||||
|
||||
public class BoardRobotPickerNBT extends RedstoneBoardRobotNBT {
|
||||
|
||||
public IIcon icon;
|
||||
public final class BoardRobotPickerNBT extends RedstoneBoardRobotNBT {
|
||||
|
||||
public static BoardRobotPickerNBT instance = new BoardRobotPickerNBT();
|
||||
|
||||
public IIcon icon;
|
||||
|
||||
private BoardRobotPickerNBT() {
|
||||
|
||||
}
|
||||
|
|
|
@ -39,14 +39,14 @@ import buildcraft.core.utils.Utils;
|
|||
|
||||
public class TileAssemblyTable extends TileLaserTableBase implements IMachine, IInventory {
|
||||
|
||||
@NetworkData
|
||||
private HashSet<String> plannedOutput = new HashSet<String>();
|
||||
|
||||
@NetworkData
|
||||
public String currentRecipeId = "";
|
||||
|
||||
public IFlexibleRecipe currentRecipe;
|
||||
|
||||
@NetworkData
|
||||
private HashSet<String> plannedOutput = new HashSet<String>();
|
||||
|
||||
public List<CraftingResult> getPotentialOutputs() {
|
||||
List<CraftingResult> result = new LinkedList<CraftingResult>();
|
||||
|
||||
|
|
|
@ -33,8 +33,8 @@ public class TileIntegrationTable extends TileLaserTableBase implements ISidedIn
|
|||
public static final int SLOT_INPUT_B = 1;
|
||||
public static final int SLOT_OUTPUT = 2;
|
||||
private static final int CYCLE_LENGTH = 32;
|
||||
private final int[] SLOTS = Utils.createSlotArray(0, 3);
|
||||
private final int[] SLOT_COMPONENTS = Utils.createSlotArray(3, 9);
|
||||
private static final int[] SLOTS = Utils.createSlotArray(0, 3);
|
||||
private static final int[] SLOT_COMPONENTS = Utils.createSlotArray(3, 9);
|
||||
private int tick = 0;
|
||||
private SimpleInventory invRecipeOutput = new SimpleInventory(1, "integrationOutput", 64);
|
||||
private InventoryMapper invOutput = new InventoryMapper(inv, SLOT_OUTPUT, 1, false);
|
||||
|
|
|
@ -30,8 +30,8 @@ public class GuiRedstoneBoard extends GuiAdvancedInterface {
|
|||
|
||||
private World world;
|
||||
private int x, y, z;
|
||||
RedstoneBoardNBT board;
|
||||
IBoardParameter[] params;
|
||||
private RedstoneBoardNBT board;
|
||||
private IBoardParameter[] params;
|
||||
|
||||
public GuiRedstoneBoard(EntityPlayer player, int ix, int iy, int iz) {
|
||||
super(new ContainerRedstoneBoard(player, ix, iy, iz), player.inventory, TEXTURE);
|
||||
|
|
Loading…
Add table
Reference in a new issue