From 47c842bb0fcdbd56ff6a0c7d74e30187fef9f456 Mon Sep 17 00:00:00 2001 From: luying Date: Fri, 10 Mar 2023 16:06:03 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9E=20fix(gvg):=20=E5=B7=85=E5=B3=B0?= =?UTF-8?q?=E6=BC=94=E6=AD=A6=E6=9C=BA=E5=99=A8=E4=BA=BA=E6=98=BE=E7=A4=BA?= =?UTF-8?q?=E5=86=9B=E5=8A=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- shared/domain/dbGeneral.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/domain/dbGeneral.ts b/shared/domain/dbGeneral.ts index 273f92d6b..7c8473939 100644 --- a/shared/domain/dbGeneral.ts +++ b/shared/domain/dbGeneral.ts @@ -191,7 +191,7 @@ export class PvpEnemies extends Enemies { this.job = heroInfo.job; this.subHid = heroInfo.subHid; this.artifact = heroInfo.artifact||[]; - if(score) this.score = score; + if(score != undefined) this.score = score; } }