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);
});
}