mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-01-18 23:11:11 +00:00
Fix confusion turns
This commit is contained in:
parent
8651099d04
commit
06740130b9
@ -1880,7 +1880,7 @@ export class FlinchAttr extends AddBattlerTagAttr {
|
|||||||
|
|
||||||
export class ConfuseAttr extends AddBattlerTagAttr {
|
export class ConfuseAttr extends AddBattlerTagAttr {
|
||||||
constructor(selfTarget?: boolean) {
|
constructor(selfTarget?: boolean) {
|
||||||
super(BattlerTagType.CONFUSED, selfTarget, Utils.randIntRange(1, 4));
|
super(BattlerTagType.CONFUSED, selfTarget, Utils.randIntRange(1, 4) + 1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user