Browse Source

修复无觉醒时未计算徽章的问题

tags/v6.7.1
枫谷剑仙 5 years ago
parent
commit
a9182cd2bb
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      script.js

+ 1
- 1
script.js View File

@@ -2224,7 +2224,7 @@ function refreshTeamTotalHP(totalDom, team, teamIdx) {
("(" + Math.round(Math.round(tHP * (1 + 0.05 * teamHPAwoken)) * badgeHPScale).toString() + ")") :
"");*/
tHpDom.innerHTML = Math.round(Math.round(tHP * (1 + 0.05 * teamHPAwoken)) * badgeHPScale) +
` (${Math.round(tHPNoAwoken)})`;
` (${Math.round(Math.round(tHPNoAwoken) * badgeHPScale)})`;
}

if (tMoveDom) {


Loading…
Cancel
Save