Skip to content

Commit

Permalink
Commanded tag saves Tatsu form on reload
Browse files Browse the repository at this point in the history
  • Loading branch information
innerthunder committed Nov 15, 2024
1 parent 502b1a2 commit 83eb558
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/data/battler-tags.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2158,6 +2158,11 @@ export class CommandedTag extends BattlerTag {
pokemon.scene.triggerPokemonBattleAnim(pokemon, PokemonAnimType.COMMANDER_REMOVE);
}
}

override loadTag(source: BattlerTag | any): void {
super.loadTag(source);
this._tatsugiriFormKey = source._tatsugiriFormKey;
}
}

/**
Expand Down

0 comments on commit 83eb558

Please sign in to comment.