Update src/phases/game-over-phase.ts

Co-authored-by: Adrian T. <68144167+torranx@users.noreply.github.com>
This commit is contained in:
Mumble 2024-11-09 19:53:46 -08:00 committed by GitHub
parent bae61cf6dd
commit befba38c17
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -29,7 +29,7 @@ export class GameOverPhase extends BattlePhase {
private isVictory: boolean;
private firstRibbons: PokemonSpecies[] = [];
constructor(scene: BattleScene, victory: boolean = false) {
constructor(scene: BattleScene, isVictory: boolean = false) {
super(scene);
this.isVictory = victory;