yyl
2026-03-04 bc1cb6da854cb2e9144f10ed55330a537ecdca16
Main/System/ChallengeTab/WarlordPavilionTabHandler.cs
@@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
public class WarlordPavilionTabHandler : BaseChallengeTabHandler
@@ -31,7 +31,7 @@
            WarlordPavilionBattleWin battleWin;
            if (!UIManager.Instance.IsOpened<WarlordPavilionBattleWin>())
            {
                battleWin = UIManager.Instance.OpenWindow<WarlordPavilionBattleWin>();
                battleWin = UIManager.Instance.OpenWindowAsync<WarlordPavilionBattleWin>().Forget();
            }
            else
            {
@@ -41,7 +41,7 @@
        }
        else
        {
            UIManager.Instance.OpenWindow<TowerBaseWin>();
            UIManager.Instance.OpenWindowAsync<TowerBaseWin>().Forget();
        }
    }