diff --git a/src/field/pokemon.ts b/src/field/pokemon.ts index 594b8cfb1ba..5631a39fed3 100644 --- a/src/field/pokemon.ts +++ b/src/field/pokemon.ts @@ -1174,9 +1174,9 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { power.value *= 1.5; let isCritical: boolean; const critOnly = new Utils.BooleanHolder(false); - const critAlways = source.getTag(BattlerTagType.ALWAYS_CRIT); + const critAlways = source.getTag(BattlerTagType.ALWAYS_CRIT); applyMoveAttrs(CritOnlyAttr, source, this, move, critOnly); - if (critOnly.value || critAlways) + if (critOnly.value || critAlways) isCritical = true; else { const critLevel = new Utils.IntegerHolder(0);