Added advancedCircuit and Circuit
This commit is contained in:
parent
aa41d576e3
commit
464d8cac03
3 changed files with 9 additions and 1 deletions
|
@ -0,0 +1,5 @@
|
|||
package techreborn.blocks.generator;
|
||||
|
||||
public class BlockGenerator {
|
||||
|
||||
}
|
|
@ -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
|
||||
|
|
|
@ -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() {
|
||||
|
|
Loading…
Reference in a new issue