From 72016dfbee5b072ddd67bbbf2298ac34bf6ea7eb Mon Sep 17 00:00:00 2001
From: lcy <1459594991@qq.com>
Date: 星期五, 07 三月 2025 17:00:51 +0800
Subject: [PATCH] 10290 修复先进入一次运势寻宝界面后,去进行其他的寻宝时报错

---
 System/LoopAct/YunShi/YunShiWin.cs |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/System/LoopAct/YunShi/YunShiWin.cs b/System/LoopAct/YunShi/YunShiWin.cs
index 6d59589..e9f0fc5 100644
--- a/System/LoopAct/YunShi/YunShiWin.cs
+++ b/System/LoopAct/YunShi/YunShiWin.cs
@@ -19,7 +19,10 @@
             btnXB.SetListener(OnXB);
             btnTask.SetListener(OnTask);
             btnGift.SetListener(OnGift);
-            btnClose.SetListener(CloseClick);
+            btnClose.SetListener(()=> {
+                CloseChildWin();
+                CloseClick();
+            });
         }
 
         protected override void BindController()

--
Gitblit v1.8.0