diff --git a/game/game.js b/game/game.js index fcd2ed35e..54bcc23d7 100644 --- a/game/game.js +++ b/game/game.js @@ -51585,7 +51585,7 @@ new Promise(resolve=>{ if(typeof arg!='string'){ const parse=(obj)=>{ if(Array.isArray(obj)){ - return `[${String(obj)}]`; + return `[${obj.map(v=>parse(v))}]`; }else if(typeof obj=='function'){ return `Function`; }else if(typeof obj!='string'){