From a4e69bdc53cc85982cecf0e5639d91418c9d4bc2 Mon Sep 17 00:00:00 2001
From: yyl <yyl>
Date: 星期五, 30 一月 2026 11:51:34 +0800
Subject: [PATCH] Merge branch 'master' of http://192.168.1.20:10010/r/Project_SG_scripts

---
 Main/SDK/SDKUtils.cs |   30 +++++++++++++++---------------
 1 files changed, 15 insertions(+), 15 deletions(-)

diff --git a/Main/SDK/SDKUtils.cs b/Main/SDK/SDKUtils.cs
index 52e6aef..8ba419a 100644
--- a/Main/SDK/SDKUtils.cs
+++ b/Main/SDK/SDKUtils.cs
@@ -983,22 +983,22 @@
             }
             else
             {
-                ConfirmCancel.ToggleConfirmCancel(Language.Get("Mail101"), Language.Get("GameCashRule1", money, title), Language.Get("ConfirmCancel102"), (bool isOk, bool isToggle) =>
-                {
-                    if (isOk)
+                ConfirmCancel.ShowPopConfirm(
+                    Language.Get("Mail101"),
+                    Language.Get("GameCashRule1", money, title),
+                    (bool isOk) =>
                     {
-                        var pack = new CA125_tagCMCoinBuyOrderInfo();
-                        pack.AppID = VersionConfig.Get().appId;
-                        pack.AppIDLen = (byte)pack.AppID.Length;
-                        pack.OrderInfo = cpInfo;
-                        pack.OrderInfoLen = (byte)pack.OrderInfo.Length;
-                        GameNetSystem.Instance.SendInfo(pack);
-                    }
-                    if (isToggle)
-                    {
-                        DayRemind.Instance.SetDayRemind(DayRemind.DJQTip, true);
-                    }
-                });
+                        if (isOk)
+                        {
+                            var pack = new CA125_tagCMCoinBuyOrderInfo();
+                            pack.AppID = VersionConfig.Get().appId;
+                            pack.AppIDLen = (byte)pack.AppID.Length;
+                            pack.OrderInfo = cpInfo;
+                            pack.OrderInfoLen = (byte)pack.OrderInfo.Length;
+                            GameNetSystem.Instance.SendInfo(pack);
+                        }
+
+                    });
             }
         }
         else

--
Gitblit v1.8.0