Files
Houngry-I/minecraft/kubejs/server_scripts/recipedump.js
2026-01-16 16:07:39 -05:00

19 lines
473 B
JavaScript

// priority: 12
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");
let recipes=[];
e.forEachRecipe({},r=>{
// console.log("recipe",r.json.toString())
recipes.push(JSON.parse(r.json.toString()));
});
let recipe=JSON.stringify(recipes);
console.log(recipe);
}
});