diff --git a/src/main/java/com/legacy/aether/registry/AetherRegistries.java b/src/main/java/com/legacy/aether/registry/AetherRegistries.java index b8a0427..32ebaa0 100644 --- a/src/main/java/com/legacy/aether/registry/AetherRegistries.java +++ b/src/main/java/com/legacy/aether/registry/AetherRegistries.java @@ -17,6 +17,7 @@ import com.legacy.aether.items.ItemsAether; import com.legacy.aether.registry.recipe.RecipeAccessoryDyes; import cpw.mods.fml.common.registry.GameRegistry; +import net.minecraftforge.oredict.OreDictionary; public class AetherRegistries { @@ -202,6 +203,8 @@ public class AetherRegistries { GameRegistry.addRecipe(new RecipeAccessoryDyes()); FurnaceRecipes.smelting().func_151394_a(new ItemStack(BlocksAether.skyroot_log, 1, 1), new ItemStack(Items.coal, 1, 1), 0.15F); FurnaceRecipes.smelting().func_151394_a(new ItemStack(BlocksAether.golden_oak_log, 1, 1), new ItemStack(Items.coal, 1, 1), 0.15F); + + OreDictionary.registerOre("stickWood", ItemsAether.skyroot_stick); } private static void initializeShapelessRecipes() { diff --git a/src/main/resources/assets/aether_legacy/recipes/skyroot_ladder.json b/src/main/resources/assets/aether_legacy/recipes/skyroot_ladder.json deleted file mode 100644 index b02dd69..0000000 --- a/src/main/resources/assets/aether_legacy/recipes/skyroot_ladder.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# #", - "###", - "# #" - ], - "key": { - "#": { - "item": "aether_legacy:skyroot_stick" - } - }, - "result": { - "item": "minecraft:ladder", - "count": 3 - } -} \ No newline at end of file