From 7e56e00ae2c3948e78633d7f2d74c76ddb1ccdd8 Mon Sep 17 00:00:00 2001 From: shijian <2954700422@qq.com> Date: Thu, 23 Nov 2023 22:54:05 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=98=BE=E7=A4=BA=E4=B8=8D?= =?UTF-8?q?=E5=8F=AF=E6=9E=9A=E4=B8=BE=E7=9A=84=E5=B1=9E=E6=80=A7?= 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 54bcc23d7..54ad7aeff 100644 --- a/game/game.js +++ b/game/game.js @@ -51610,7 +51610,7 @@ new Promise(resolve=>{ } else if(typeof arg=='object'){ let msg=''; - for(const name in arg){ + for(const name of Object.getOwnPropertyNames(arg)){ msg+=`${name}: ${parse(arg[name])}
`; } return `
${parse(arg)}${msg}
`;