Added advancedCircuit and Circuit

This commit is contained in:
gigabit101 2016-02-20 01:08:18 +00:00
parent aa41d576e3
commit 464d8cac03
3 changed files with 9 additions and 1 deletions

View file

@ -6,6 +6,7 @@ import net.minecraft.item.ItemStack;
import techreborn.api.recipe.IRecipeCompact;
import techreborn.items.ItemCells;
import techreborn.items.ItemIngots;
import techreborn.items.ItemParts;
import techreborn.items.ItemPlates;
import java.io.BufferedWriter;
@ -34,6 +35,8 @@ public class RecipeCompact implements IRecipeCompact {
recipes.put("iridiumPlate", ItemPlates.getPlateByName("iridium"));
recipes.put("cell", ItemCells.getCellByName("empty"));
recipes.put("airCell", ItemCells.getCellByName("empty"));
recipes.put("electronicCircuit", ItemParts.getPartByName("electronicCircuit"));
recipes.put("advancedCircuit", ItemParts.getPartByName("advancedCircuit"));
}
@Override