From 18a440b3c0b775bc24c1a739ae6b99df5697ba52 Mon Sep 17 00:00:00 2001 From: Alexander Date: Mon, 17 Feb 2014 00:36:50 -0500 Subject: [PATCH] Remove non used items --- .../client/TConstructClientRegistry.java | 42 ------------------- 1 file changed, 42 deletions(-) diff --git a/src/main/java/tconstruct/library/client/TConstructClientRegistry.java b/src/main/java/tconstruct/library/client/TConstructClientRegistry.java index dfdd51c1509..fbc47409c34 100644 --- a/src/main/java/tconstruct/library/client/TConstructClientRegistry.java +++ b/src/main/java/tconstruct/library/client/TConstructClientRegistry.java @@ -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); @@ -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) {