Fix confusion turns

This commit is contained in:
Flashfyre 2023-10-28 20:37:02 -04:00
parent 8651099d04
commit 06740130b9
1 changed files with 1 additions and 1 deletions

View File

@ -1880,7 +1880,7 @@ export class FlinchAttr extends AddBattlerTagAttr {
export class ConfuseAttr extends AddBattlerTagAttr {
constructor(selfTarget?: boolean) {
super(BattlerTagType.CONFUSED, selfTarget, Utils.randIntRange(1, 4));
super(BattlerTagType.CONFUSED, selfTarget, Utils.randIntRange(1, 4) + 1);
}
}