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

@ -0,0 +1,5 @@
package techreborn.blocks.generator;
public class BlockGenerator {
}

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

View file

@ -38,7 +38,7 @@ public class ItemParts extends ItemTextureBase {
"laserFocus", "ductTape", "lazuriteChunk", "iridiumAlloyIngot", "rockCutterBlade", "superConductor",
"thoriumCell", "doubleThoriumCell", "quadThoriumCell", "plutoniumCell", "doublePlutoniumCell",
"quadPlutoniumCell", "destructoPack", "iridiumNeutronReflector", "massHoleDevice", "computerMonitor"
, "machineParts", "thickNeutronReflector", "neutronReflector", "circuit", "advancedCircuit"};
, "machineParts", "thickNeutronReflector", "neutronReflector", "electronicCircuit", "advancedCircuit"};
public ItemParts() {