ModTweaker

ModTweaker

88M Downloads

Botania Apothecary recipes

goosezilla opened this issue ยท 5 comments

commented

removing 1 recipe removes all

mods.botania.Apothecary.removeRecipe("endoflame");

will remove all "special flower" recipes, tried with NBT too

commented

post all the scripts you have tried please.

commented

tried the above and also

mods.botania.Apothecary.removeRecipe(botania:specialFlower.withTag({type: "endoflame"});

both remove all apothecary recipes

commented

try using

onlyWithTag
commented

mods.botania.Apothecary.removeRecipe(botania:specialFlower.onlyWithTag({type: "endoflame"}));

thats giving me an error saying it expected ")"

commented

val flower = botania:specialFlower;
val endoflame = flower.onlyWithTag({type:"endoflame"});

mods.botania.Apothecary.removeRecipe(endoflame);

seems to work

Thanks jared