From 671c0385400c7e61228ccb0a4a9ddf946829fe9d Mon Sep 17 00:00:00 2001 From: RedstonewolfX <108761527+RedstonewolfX@users.noreply.github.com> Date: Mon, 8 Jul 2024 10:46:54 -0400 Subject: [PATCH] Make battle flyout editable externally --- src/ui/battle-flyout.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/battle-flyout.ts b/src/ui/battle-flyout.ts index 5b34a6b5411..a17ce3aefbe 100644 --- a/src/ui/battle-flyout.ts +++ b/src/ui/battle-flyout.ts @@ -51,7 +51,7 @@ export default class BattleFlyout extends Phaser.GameObjects.Container { private flyoutContainer: Phaser.GameObjects.Container; /** The array of {@linkcode Phaser.GameObjects.Text} objects which are drawn on the flyout */ - private flyoutText: Phaser.GameObjects.Text[] = new Array(4); + public flyoutText: Phaser.GameObjects.Text[] = new Array(4); /** The array of {@linkcode MoveInfo} used to track moves for the {@linkcode Pokemon} linked to the flyout */ private moveInfo: MoveInfo[] = new Array();