I'm trying to add new recipes for singularities, but the given code doesn't remove the original recipes. I already tried:
ServerEvents.recipes(event => {
event.remove({ output: 'avaritia:singularity' })
})
Trying this for other recipes works, as well adding ones, like:
ServerEvents.recipes(event => {
event.remove({ output: 'avaritia:infinity_sword' })
})
ServerEvents.recipes(
event => {
event.custom({
type: 'avaritia:shaped_extreme_craft',
pattern: [
" II",
" III",
" III ",
" III ",
" M III ",
" MCI ",
" NM ",
" N M ",
"X "
],
key: {
M: [
{item: 'avaritia:crystal_matrix_ingot'}
],
C: [
{item: 'avaritia:infinity_catalyst'}
],
I: [
{item: 'avaritia:infinity_ingot'}
],
N: [
{item: 'avaritia:neutron_ingot'}
],
X: [
{item: 'mekanism:meka_tool'}
]
},
result: {item: 'avaritia:infinity_sword'}
})
}
)