for some reason, when ServerEvents.recipes is used in server_scripts, all AE2 inscriber recipes dissapear. They don't exist in either REI or in game when attempting to use them normally. I don't notice this happening to any other recipes, and it happens regardless of if there are any actual recipe changes.
This is what I have normally:
event.remove({id: 'magistuarmory:furnace/steel_ingot_blasting'})
event.remove({id: 'magistuarmory:steel_ring'})
event.shaped(
Item.of('magistuarmory:steel_ring', 8), // arg 1: output
[
' A ',
'A A', // arg 2: the shape (array of strings)
' A '
],
{
A: 'mythicmetals:steel_nugget',
})
})```
But the problem persits with just
```ServerEvents.recipes(event => {
})```
removing all content besides the comments that come with the mod files by default seems to fix the issue, and the recipes reappear and work as normal.
Any idea what's happening here, and how I can fix / workaround it?

