Files
Houngry-I/minecraft/kubejs/server_scripts/recipedump.js
2026-01-16 10:15:11 -05:00

13 lines
335 B
JavaScript

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 rec = e.getRecipes();
for (let k in rec) {
console.log(JSON.stringify({key:k,val:rec[k]}))
}
}
});