Fix PostBattleInitFormChangeAbAttr displaying

This commit is contained in:
Dean 2025-02-21 22:24:04 -08:00
parent 76b6f624ad
commit e5f5f1bd9a

View File

@ -245,7 +245,7 @@ export class PostBattleInitFormChangeAbAttr extends PostBattleInitAbAttr {
private formFunc: (p: Pokemon) => number;
constructor(formFunc: ((p: Pokemon) => number)) {
super(true);
super(false);
this.formFunc = formFunc;
}