diff --git a/src/phases/message-phase.ts b/src/phases/message-phase.ts index 9439d8286c3..18a76f72db5 100644 --- a/src/phases/message-phase.ts +++ b/src/phases/message-phase.ts @@ -33,12 +33,4 @@ export class MessagePhase extends Phase { globalScene.ui.showText(this.text, null, () => this.end(), this.callbackDelay || (this.prompt ? 0 : 1500), this.prompt, this.promptDelay); } } - - end() { - if (globalScene.abilityBar.shown) { - globalScene.abilityBar.hide(); - } - - super.end(); - } }