Posted February 27, 20214 yr I'm attempting to add an haste potion, however the method I'm using leads to them being brewed regardless of the base input (awkward potion). What am I doing wrong? public static void addRecipes(FMLCommonSetupEvent event) { event.enqueueWork( () -> { Ingredient input = Ingredient.fromStacks(PotionUtils.addPotionToItemStack(new ItemStack(Items.POTION), Potions.AWKWARD)); Ingredient ingredient = Ingredient.fromItems(Items.HONEY_BOTTLE); ItemStack output = PotionUtils.addPotionToItemStack(new ItemStack(Items.POTION), PotionList.haste_potion); BrewingRecipeRegistry.addRecipe(input, ingredient, output); }); }
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.