Jump to content

Twu

Members
  • Posts

    2
  • Joined

  • Last visited

Everything posted by Twu

  1. Thank you so much
  2. 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); }); }
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.