I am trying to get a Water Bottle to output a bottle of Purified Water (both technically potions) in a campfire recipe, but it's only outputting an uncraftable potion. What am I doing wrong in my code?
event.campfireCooking(Item.of('minecraft:potion','{Potion:"minecraft:purified_water"}').strongNBT(),Item.of('minecraft:potion','{Potion:"minecraft:water"}').strongNBT()).cookingTime(600).id('rpgcraft:purified_water_from_campfire')
As a side note, I am trying to overwrite a hardcoded recipe in the Dehydration mod, since I need to change the cooking time and give it a recipe ID (original recipe doesn't have one).
Is there anything wrong with the code, and if not, is what I am trying to do technically impossible since I'm trying to overwrite an ID-less hardcoded recipe? Thanks