Skip to content

Commit

Permalink
Remove non used items
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander committed Feb 17, 2014
1 parent 3d86631 commit 18a440b
Showing 1 changed file with 0 additions and 42 deletions.
Expand Up @@ -79,43 +79,6 @@ public static void addSingleEffectRenderMapping (ToolCore tool, int materialID,
tool.registerEffectPath(materialID, icon);
}

public static void registerManualIcon (String name, ItemStack stack)
{
manualIcons.put(name, stack);
}

public static ItemStack getManualIcon (String textContent)
{
ItemStack stack = manualIcons.get(textContent);
if (stack != null)
return stack;
return defaultStack;
}

public static void registerManualSmallRecipe (String name, ItemStack output, ItemStack... stacks)
{
ItemStack[] recipe = new ItemStack[5];
recipe[0] = output;
System.arraycopy(stacks, 0, recipe, 1, 4);
recipeIcons.put(name, recipe);
}

public static void registerManualLargeRecipe (String name, ItemStack output, ItemStack... stacks)
{
ItemStack[] recipe = new ItemStack[10];
recipe[0] = output;
System.arraycopy(stacks, 0, recipe, 1, 9);
recipeIcons.put(name, recipe);
}

public static void registerManualFurnaceRecipe (String name, ItemStack output, ItemStack input)
{
ItemStack[] recipe = new ItemStack[2];
recipe[0] = output;
recipe[1] = input;
recipeIcons.put(name, recipe);
}

public static void registerManualModifier (String name, ItemStack output, ItemStack topinput)
{
registerManualModifier(name, output, topinput, null);
Expand All @@ -139,11 +102,6 @@ public static void registerManualSmeltery (String name, ItemStack output, ItemSt
recipeIcons.put(name, recipe);
}

public static ItemStack[] getRecipeIcons (String recipeName)
{
return recipeIcons.get(recipeName);
}

//Gui
public static void addToolButton (ToolGuiElement element)
{
Expand Down

0 comments on commit 18a440b

Please sign in to comment.