From fb0570bdb7e73e7d4dca211f365ee67b43628240 Mon Sep 17 00:00:00 2001
From: yyl <yyl>
Date: 星期五, 03 四月 2026 14:03:52 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master' into h5version
---
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 08a6291..54596ec 100644
--- a/Main/System/HappyXB/HappyXBModel.cs
+++ b/Main/System/HappyXB/HappyXBModel.cs
@@ -183,14 +183,24 @@
{
UIManager.Instance.OpenWindowAsync<HeroCallResultWin>().Forget();
}
+ return;
}
- if (ActHeroAppearConfig.GetActTreasureTypeList().Contains(type))
+ if (ActHeroAppearConfig.GetHeroDebutActTreasureTypeList().Contains(type))
{
if (!UIManager.Instance.IsOpened<HeroDebutCallResultWin>())
{
UIManager.Instance.OpenWindowAsync<HeroDebutCallResultWin>().Forget();
}
+ return;
+ }
+
+ if (ActHeroAppearConfig.GetHeroReturnActTreasureTypeList().Contains(type))
+ {
+ if (!UIManager.Instance.IsOpened<HeroReturnCallResultWin>())
+ {
+ UIManager.Instance.OpenWindow<HeroReturnCallResultWin>();
+ }
}
}
--
Gitblit v1.8.0