From d1cec2aa3532943f7cde95d6036033a37f3fdc8f Mon Sep 17 00:00:00 2001 From: shijian <2954700422@qq.com> Date: Thu, 23 Nov 2023 22:42:52 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E6=B8=B8=E6=88=8F=E5=86=85?= =?UTF-8?q?=E6=8E=A7=E5=88=B6=E5=8F=B0=E6=95=B0=E7=BB=84=E7=B1=BB=E5=9E=8B?= =?UTF-8?q?=E7=9A=84=E6=98=BE=E7=A4=BA=E5=86=85=E5=AE=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- game/game.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'){