further improved recipe dump

This commit is contained in:
APEX FIGHT
2026-01-16 10:28:04 -05:00
parent f3b553c3fa
commit 5ab76a1ce1

View File

@@ -6,7 +6,14 @@ ServerEvents.recipes(e => {
let rec = e.getRecipes();
for (let k in rec) {
console.log(JSON.stringify({key:k,val:rec[k]}))
let value = [];
for (let i of rec[k]){
value.push(i.toString());
}
console.log(JSON.stringify({key:k,val:value}))
}
}
});