From 2f7dfdbfc0d6ca47820a5de946ed1adde5cd4903 Mon Sep 17 00:00:00 2001
From: lcy <1459594991@qq.com>
Date: 星期五, 30 一月 2026 11:51:01 +0800
Subject: [PATCH] 449 使用代金卷购买礼包的二次确认弹窗,不再有本次登陆不再提示的勾选框

---
 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