Remove unneeded default arg in ReturnPhase

This commit is contained in:
innerthunder 2024-09-22 23:05:41 -07:00
parent 290618b7f4
commit c39efe6e26

View File

@ -5,7 +5,7 @@ import { SwitchSummonPhase } from "./switch-summon-phase";
export class ReturnPhase extends SwitchSummonPhase {
constructor(scene: BattleScene, fieldIndex: integer) {
super(scene, SwitchType.SWITCH, fieldIndex, -1, true, true);
super(scene, SwitchType.SWITCH, fieldIndex, -1, true);
}
switchAndSummon(): void {