Is there a way I can make my crafting recipes more efficient than this? Like what the title says can I make it include certain ranges of Meta values?
GameRegistry.addShapelessRecipe(new ItemStack(ModItems.natureDust), ModItems.mysticPestle, new ItemStack(Blocks.SAPLING, 1, 1));
GameRegistry.addShapelessRecipe(new ItemStack(ModItems.natureDust), ModItems.mysticPestle, new ItemStack(Blocks.SAPLING, 1, 2));
GameRegistry.addShapelessRecipe(new ItemStack(ModItems.natureDust), ModItems.mysticPestle, new ItemStack(Blocks.SAPLING, 1, 3));
GameRegistry.addShapelessRecipe(new ItemStack(ModItems.natureDust), ModItems.mysticPestle, new ItemStack(Blocks.SAPLING, 1, 4));
GameRegistry.addShapelessRecipe(new ItemStack(ModItems.natureDust), ModItems.mysticPestle, new ItemStack(Blocks.SAPLING, 1, 5));