recipedump

This commit is contained in:
APEX FIGHT
2026-01-16 10:32:51 -05:00
parent 5ab76a1ce1
commit 924a3acd1e

View File

@@ -7,9 +7,15 @@ ServerEvents.recipes(e => {
for (let k in rec) { for (let k in rec) {
let value = []; let value = [];
for (let i of rec[k]){ try {
value.push(i.toString()); for (let i of rec[k]){
} try {
value.push(i.toString());
} catch {console.log(".");}
}
} catch {console.log("unknown obj: " + JSON.stringify(rec[k]));}