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; } }