Remove ability bar hiding from messagePhase

This commit is contained in:
Dean 2025-01-31 23:26:16 -08:00
parent 2ab325c900
commit 76a0ebb1c7

View File

@ -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();
}
}