Browse Source

bug #1769: Fixed an issue with crits not rendering in a bigger font

tags/v0.9.0^2
Shaun 3 years ago
parent
commit
9e0d249a41
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/server/combat/scale.js

+ 1
- 1
src/server/combat/scale.js View File

@@ -61,7 +61,7 @@ const scaleCrit = ({ noCrit, isAttack, crit: forceCrit, srcValues }, result) =>
const didCrit = forceCrit || mathRandom() * 100 < totalCritChance;

if (didCrit) {
result.isCrit = true;
result.crit = true;
result.amount *= (totalCritMultiplier / 100);
}
};


Loading…
Cancel
Save