Fix missing move text when a move fails

This commit is contained in:
innerthunder 2024-10-14 17:01:11 -07:00
parent e962ac1f18
commit 41ad255739

View File

@ -147,6 +147,7 @@ export class MovePhase extends BattlePhase {
const moveQueue = this.pokemon.getMoveQueue();
if (targets.length === 0 || (moveQueue.length && moveQueue[0].move === Moves.NONE)) {
this.showMoveText();
this.showFailedText();
this.cancelled = true;
}