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.
 

19 lines
807 B

// priority: 0
onEvent("recipes", event => {
event.remove({ output: "thermal:apple_block" });
event.remove({ output: "thermal:carrot_block" });
event.remove({ output: "thermal:potato_block" });
event.remove({ output: "thermal:beetroot_block" });
event.remove({ output: "thermal:gunpowder_block" });
event.remove({ output: "quark:carrot_crate" });
event.remove({ output: "quark:potato_crate" });
event.remove({ output: "quark:beetroot_crate" });
event.remove({ output: "quark:sugar_cane_block" });
event.remove({ output: "quark:bamboo_block" });
event.shaped("quark:bamboo_block", [ "BB", "BB" ], { B: "minecraft:bamboo" });
event.remove({ id: "quark:building/crafting/compressed/bamboo_block_uncompress" });
event.shapeless("4x minecraft:bamboo", [ "quark:bamboo_block" ]);
});