I have MoreJS but I only see an option to remove them by input. I'm having an issue where something in my modpack adds a TON of recipes for Mundane Potions (like basically all other brewing ingredients), and I want to remove them. I tried removing it normally but it doesn't seem to have worked.
Here's the script I tried.
ServerEvents.recipes(event => {
// All Recipe Removal
let toRemove = [
{many other things here},
{output: Item.of('minecraft:potion', '{Potion:"minecraft:mundane"}')}
];
for (const remove of toRemove) {
event.remove(remove);
}
})