Examples of CircuitRecipe


Examples of forestry.core.circuits.ItemSolderingIron.CircuitRecipe

    String title = layout.getName();
    fontRendererObj.drawString(title, guiLeft + 8 + getCenteredOffset(title, 138), guiTop + 16, fontColor.get("gui.screen"));

    for (int l = 2; l < inventory.getSizeInventory(); l++) {
      String description;
      CircuitRecipe recipe = ItemSolderingIron.SolderManager.getMatchingRecipe(layout, inventory.getStackInSlot(l));
      if (recipe == null)
        description = "(" + StringUtil.localize("gui.noeffect") + ")";
      else
        description = StringUtil.localize(recipe.circuit.getName()) + " (" + recipe.circuit.getLimit() + ")";
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.