mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-04-17 15:17:48 +01:00
[Balance] Remove accuracy cap from Wide Lens
This commit is contained in:
commit
fdf8c1a695
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user