(Neoforge 1.21.1)
Even when using this it does not remove the recipes for creating dyed backpacks but correctly removes all other items. all dyed backpacks have the same item id but differ in nbt data, im not sure how to target them correctly to remove them. Thanks
ServerEvents.recipes((event) => {
event.remove({ input: /sophisticatedbackpacks:.*/ });
event.remove({ output: /sophisticatedbackpacks:.*/ });
});
