Fix Super Luck working on the wrong side

pull/133/head
Flashfyre 2024-04-14 18:19:35 -04:00
parent 8932a0b6f9
commit 669bc367e5
1 changed files with 1 additions and 1 deletions

View File

@ -1186,7 +1186,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container {
applyMoveAttrs(HighCritAttr, source, this, move, critLevel);
this.scene.applyModifiers(TempBattleStatBoosterModifier, source.isPlayer(), TempBattleStat.CRIT, critLevel);
const bonusCrit = new Utils.BooleanHolder(false);
if (applyAbAttrs(BonusCritAbAttr, this, null, bonusCrit)) {
if (applyAbAttrs(BonusCritAbAttr, source, null, bonusCrit)) {
if (bonusCrit.value)
critLevel.value += 1;
}