Update battle-flyout.ts

This commit is contained in:
RedstonewolfX 2024-08-04 01:45:58 -04:00
parent b4f435a86e
commit 98d5dd85e3

View File

@ -134,6 +134,10 @@ export default class BattleFlyout extends Phaser.GameObjects.Container {
if (!moveInfo) {
const mv = this.pokemon.getMoveset()[i]
if (mv == undefined) {
flyoutText.text = ""
continue;
}
flyoutText.text = `${highlight == i ? ">> " : ""}${mv.getName()}${highlight == i ? " <<" : ""}`;
flyoutText.text = `${highlight == i ? ">> " : ""}???${highlight == i ? " <<" : ""}`;
continue;