From 484239463e0802b47070d5df8d7b6931a64b0a67 Mon Sep 17 00:00:00 2001
From: lcy <1459594991@qq.com>
Date: 星期一, 30 三月 2026 17:03:52 +0800
Subject: [PATCH] 492 武将返场

---
 Main/System/HappyXB/HappyXBModel.cs |   12 +++++++++++-
 1 files changed, 11 insertions(+), 1 deletions(-)

diff --git a/Main/System/HappyXB/HappyXBModel.cs b/Main/System/HappyXB/HappyXBModel.cs
index c33cee3..a940de5 100644
--- a/Main/System/HappyXB/HappyXBModel.cs
+++ b/Main/System/HappyXB/HappyXBModel.cs
@@ -182,14 +182,24 @@
             {
                 UIManager.Instance.OpenWindow<HeroCallResultWin>();
             }
+            return;
         }
 
-        if (ActHeroAppearConfig.GetActTreasureTypeList().Contains(type))
+        if (ActHeroAppearConfig.GetHeroDebutActTreasureTypeList().Contains(type))
         {
             if (!UIManager.Instance.IsOpened<HeroDebutCallResultWin>())
             {
                 UIManager.Instance.OpenWindow<HeroDebutCallResultWin>();
             }
+            return;
+        }
+
+        if (ActHeroAppearConfig.GetHeroReturnActTreasureTypeList().Contains(type))
+        {
+            if (!UIManager.Instance.IsOpened<HeroReturnCallResultWin>())
+            {
+                UIManager.Instance.OpenWindow<HeroReturnCallResultWin>();
+            }
         }
     }
 

--
Gitblit v1.8.0