Shoo IC2 Exp, Shoo

This commit is contained in:
Yulife 2016-05-30 16:11:40 +02:00
parent 8b09c72255
commit 9cbebe6dbd
4 changed files with 0 additions and 87 deletions

View file

@ -60,7 +60,6 @@ public class ModItems
public static Item advancedJackhammer;
public static Item nanosaber;
public static Item hammer;
public static Item wrench;
public static Item lapotronCrystal;
public static Item energyCrystal;
@ -266,9 +265,6 @@ public class ModItems
registerItem(peridotLeggings, "peridotLeggings");
peridotBoots = new ItemTRArmour(Reference.PERIDOT_ARMOUR, EntityEquipmentSlot.FEET);
registerItem(peridotBoots, "peridotBoots");
hammer = new ItemHammer(100);
registerItem(hammer, "hammer");
wrench = new ItemWrench();
registerItem(wrench, "wrench");

View file

@ -41,12 +41,10 @@ import java.util.List;
public class ModRecipes
{
public static ConfigTechReborn config;
public static ItemStack hammerStack = new ItemStack(ModItems.hammer, 1, OreDictionary.WILDCARD_VALUE);
public static ItemStack batteryStack = new ItemStack(ModItems.reBattery, 1, OreDictionary.WILDCARD_VALUE);
public static ItemStack crystalStack = new ItemStack(ModItems.energyCrystal, 1, OreDictionary.WILDCARD_VALUE);
public static ItemStack lapcrystalStack = new ItemStack(ModItems.lapotronCrystal, 1, OreDictionary.WILDCARD_VALUE);
public static ItemStack dyes = new ItemStack(Items.DYE, 1, OreDictionary.WILDCARD_VALUE);
public static Item hammer = ModItems.hammer;
public static Item ironDrill = TechRebornAPI.recipeCompact.getItem("miningDrill").getItem();
public static ItemStack ironDrillStack = new ItemStack(ironDrill, 1, OreDictionary.WILDCARD_VALUE);