mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-04-24 06:17:40 -04:00
[Bug] Fix multi-hit frenzy moves permanently locking the user (#2662)
This commit is contained in:
parent
d8129dae7d
commit
0d25b2332a
1 changed files with 1 additions and 1 deletions
|
@ -3872,7 +3872,7 @@ export class DisableMoveAttr extends MoveEffectAttr {
|
|||
|
||||
export class FrenzyAttr extends MoveEffectAttr {
|
||||
constructor() {
|
||||
super(true, MoveEffectTrigger.HIT);
|
||||
super(true, MoveEffectTrigger.HIT, false, true);
|
||||
}
|
||||
|
||||
canApply(user: Pokemon, target: Pokemon, move: Move, args: any[]) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue