Well-rounded Minecraft 1.18.2 modpack featuring Tech, Magic, Exploration and Decoration content. Made with love. 💚
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
419 B

// priority: 0
onEvent("recipes", event => {
// These recipes appear to be dynamic and can't be removed through KubeJS.
event.remove({ output: "reliquary:mob_charm_belt" });
event.remove({ id: /^reliquary:mob_charm/ });
event.remove({ id: /^reliquary:reliquary\.fragment_to_spawn_egg/ });
// Mob Charm Fragment recipes can be removed just fine.
event.remove({ id: /^reliquary:mob_charm_fragments/ });
});