🐞 fix(gvg): 修复防御cd,积分点驻守变更

This commit is contained in:
luying
2023-03-02 19:29:00 +08:00
parent 1175e2b6ee
commit a1c6deae92
7 changed files with 13 additions and 10 deletions

View File

@@ -702,6 +702,7 @@ export class GVGTeamInList {
durability: number; // 耐久
maxDurability: number; // 最大耐久
restartTime: number;
defenseTime: number;
curTeamBreak: boolean;
constructor(team: GVGTeamType) {
@@ -720,6 +721,7 @@ export class GVGTeamInList {
this.durability = team.durability;
this.maxDurability = team.maxDurability;
this.restartTime = team.restartTime;
this.defenseTime = team.defenseTime;
this.curTeamBreak = !!team.curTeamBreak;
}
}