From a5d0662ca6dccee749e62653cf6b787e13600ecf Mon Sep 17 00:00:00 2001 From: Pansmith <70342772+ThePansmith@users.noreply.github.com> Date: Sun, 3 May 2026 15:53:59 -0500 Subject: [PATCH] Quark Crate Recipe It normally only loads the recipe if oddities is enabled. --- kubejs/server_scripts/mods/quark/shaped.js | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 kubejs/server_scripts/mods/quark/shaped.js diff --git a/kubejs/server_scripts/mods/quark/shaped.js b/kubejs/server_scripts/mods/quark/shaped.js new file mode 100644 index 0000000..73f0477 --- /dev/null +++ b/kubejs/server_scripts/mods/quark/shaped.js @@ -0,0 +1,4 @@ +ServerEvents.recipes(e => { + e.shaped('quark:crate', ['IPI', 'PCP', 'IPI'], { I: 'minecraft:iron_ingot', P: '#minecraft:planks', C: '#forge:chests/wooden' }) + .id(`kubejs:quark/shaped/crate`) +})