We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e69a16 commit c702e13Copy full SHA for c702e13
1 file changed
Assets/Scripts/Game/Logic/TutorialBattlePresenter.cs
@@ -170,8 +170,10 @@ protected override async UniTask<CardModel> SelectBattleCardAsync(CardBattleHand
170
{
171
BattleUIPresenter.ShowPlayerHand(availableCards);
172
BattleUIPresenter.SetBattleHandInteractable(false);
173
+ BattleUIPresenter.SetSkillButtonInteractable(false);
174
await BattleUIPresenter.StartTutorial("BattleSkillPhase");
- await BattleUIPresenter.OnSkillActivated.FirstAsync();
175
+ BattleUIPresenter.SetSkillButtonInteractable(true);
176
+ await UniTask.WaitUntil(() => !handler.PlayerSkillAvailable);
177
BattleUIPresenter.SetBattleHandInteractable(true);
178
}
179
0 commit comments