From 7ff4daa48da90b87fe8cd61b5633dc0a07f0f838 Mon Sep 17 00:00:00 2001 From: Matthew Olker Date: Sun, 23 Jun 2024 12:17:51 -0400 Subject: [PATCH] hotfix add back message bg --- src/ui/fight-ui-handler.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ui/fight-ui-handler.ts b/src/ui/fight-ui-handler.ts index 75108101ad9..ed520512443 100644 --- a/src/ui/fight-ui-handler.ts +++ b/src/ui/fight-ui-handler.ts @@ -282,6 +282,7 @@ export default class FightUiHandler extends UiHandler { clear() { super.clear(); + const messageHandler = this.getUi().getMessageHandler(); this.clearMoves(); this.typeIcon.setVisible(false); this.ppLabel.setVisible(false); @@ -291,6 +292,7 @@ export default class FightUiHandler extends UiHandler { this.accuracyLabel.setVisible(false); this.accuracyText.setVisible(false); this.moveCategoryIcon.setVisible(false); + messageHandler.bg.setVisible(true); this.eraseCursor(); }