Skip to content

Commit

Permalink
Merge pull request #5732 from planetarium/bugfix/payment-popup
Browse files Browse the repository at this point in the history
move SummonResultPopup order before PaymentPopup
  • Loading branch information
tyrosine1153 authored Aug 26, 2024
2 parents 3f32d3b + efcc289 commit bdaa6f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nekoyume/Assets/_Scripts/UI/MainCanvas.cs
Original file line number Diff line number Diff line change
Expand Up @@ -390,6 +390,8 @@ public IEnumerator CreateSecondWidgets()
yield return null;
_secondWidgets.Add(Widget.Create<LevelUpCelebratePopup>());
yield return null;
_secondWidgets.Add(Widget.Create<SummonResultPopup>());
yield return null;
_secondWidgets.Add(Widget.Create<PaymentPopup>());
yield return null;
_secondWidgets.Add(Widget.Create<ReplaceMaterialPopup>());
Expand Down Expand Up @@ -428,8 +430,6 @@ public IEnumerator CreateSecondWidgets()
yield return null;
_secondWidgets.Add(Widget.Create<ConfirmConnectPopup>());
yield return null;
_secondWidgets.Add(Widget.Create<SummonResultPopup>());
yield return null;
_secondWidgets.Add(Widget.Create<SummonDetailPopup>());
yield return null;
_secondWidgets.Add(Widget.Create<SummonSkillsPopup>());
Expand Down

0 comments on commit bdaa6f5

Please sign in to comment.