From e3b5703845fe928213dd4a3406a3adbc5b3e6424 Mon Sep 17 00:00:00 2001 From: APEX FIGHT Date: Fri, 16 Jan 2026 10:03:25 -0500 Subject: [PATCH] recipe dumping feature --- minecraft/kubejs/server_scripts/recipedump.js | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 minecraft/kubejs/server_scripts/recipedump.js diff --git a/minecraft/kubejs/server_scripts/recipedump.js b/minecraft/kubejs/server_scripts/recipedump.js new file mode 100644 index 0000000..54a5bf1 --- /dev/null +++ b/minecraft/kubejs/server_scripts/recipedump.js @@ -0,0 +1,8 @@ +const toggle = true; + +ServerEvents.recipes(e => { + if (toggle) { + console.warn("RECIPE DUMPING IS TURNED ON, THIS WILL DUMP JSON DATA OF ALL OF THE RECIPES IN THE GAME, WILL LAG"); + console.log(JSON.stringify(e.getRecipes())); + } +});