[Balance] Remove accuracy cap from Wide Lens

This commit is contained in:
NightKev 2025-04-01 15:58:25 -07:00
parent 5416c76ecb
commit 70ba974348
1 changed files with 1 additions and 1 deletions

View File

@ -2734,7 +2734,7 @@ export class PokemonMoveAccuracyBoosterModifier extends PokemonHeldItemModifier
* @returns always `true`
*/
override apply(_pokemon: Pokemon, moveAccuracy: NumberHolder): boolean {
moveAccuracy.value = Math.min(moveAccuracy.value + this.accuracyAmount * this.getStackCount(), 100);
moveAccuracy.value = moveAccuracy.value + this.accuracyAmount * this.getStackCount();
return true;
}