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())); + } +});