Iron's Restrictions adds a manuscript item which has dynamic recipes generated based on the spell school.
We're trying to remove those recipes, but they refuse to get removed.
Examples of what we tried (not working):
ServerEvents.recipes(event => {
//Didn't remove the recipe for any of the existing variants.
event.remove({not:{type:'eidolon_repraised:worktable'},output:Item.of('irons_restrictions:manuscript')})
//Tried specifying this for each school, still didn't work. This is the correct component and value for the output.
event.remove({not:{type:'eidolon_repraised:worktable'},output:Item.of('irons_restrictions:manuscript').set('irons_restrictions:school_component','irons_spellbooks:fire')})
//Tried this format at first since it seemed to make the most sense for this purpose but it errored
event.remove({not:{type:'eidolon_repraised:worktable'},output:Item.of('irons_restrictions:manuscript[irons_restrictions:school_component=irons_spellbooks:fire]')})
})