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

9 lines
254 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");
console.log(JSON.stringify(e.getRecipes()));
}
});