From d46baf63b1c8d6e12a641cb70f042c2cdcb33c02 Mon Sep 17 00:00:00 2001 From: ShakeFlower Date: Fri, 14 Feb 2025 15:53:37 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E7=89=B9=E6=AE=8A=E5=B1=9E=E6=80=A7?= =?UTF-8?q?=E7=9B=B8=E7=AD=89=E7=9A=84=E5=88=A4=E5=AE=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- libs/ui.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ui.js b/libs/ui.js index 2d5a942b..89a67ba3 100644 --- a/libs/ui.js +++ b/libs/ui.js @@ -2419,7 +2419,7 @@ ui.prototype._drawBookDetail_origin = function (enemy, texts) { } core.enemys.getStatusToCompare().forEach(function (one) { // if (enemy[one] == null || originEnemy[one] == null) return; - if (enemy[one] != originEnemy[one]) { + if (!core.utils.deepEqual(enemy[one], originEnemy[one])) { content.push(core.getStatusLabel(one) + " " + originEnemy[one]); } });