From 89343a7a0909e5244a3b69c4db1294de4536243b Mon Sep 17 00:00:00 2001
From: lcy <1459594991@qq.com>
Date: 星期一, 15 十二月 2025 18:15:22 +0800
Subject: [PATCH] 262 幻境阁系统-客户端 新增仅适用武将解锁的头像和形象的红点移除规则
---
Main/System/PlayerProfile/ExchangeCodeWin.cs | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/Main/System/PlayerProfile/ExchangeCodeWin.cs b/Main/System/PlayerProfile/ExchangeCodeWin.cs
index 3bcebb0..3fe08b3 100644
--- a/Main/System/PlayerProfile/ExchangeCodeWin.cs
+++ b/Main/System/PlayerProfile/ExchangeCodeWin.cs
@@ -6,7 +6,7 @@
{
[SerializeField] InputField input;
[SerializeField] Button receiveBtn;
- const string exchangeUrl = "http://gamecenter.secondworld.net.cn:53003/Coupon/CouponCode.php?";
+ const string exchangeUrl = "http://xssgcenter.secondworld.net.cn:53003/Coupon/CouponCode.php?";
bool isCool = false;
float time = 0;
@@ -64,10 +64,10 @@
tables["channel"] = VersionConfig.Get().appId;
tables["code"] = passward;
#if UNITY_EDITOR
- //tables["accid"] = ModelCenter.Instance.GetModel<LoginModel>().accountBuf;
+ tables["accid"] = LoginManager.Instance.accountBuf;
tables["accid"] = PlayerDatas.Instance.baseData.AccID;
#else
- //tables["accid"] = ynmbxxjUtil.Instance.FreePlatformInfo.account;
+ tables["accid"] = SDKUtils.Instance.FreePlatformInfo.account;
#endif
tables["sid"] = ServerListCenter.Instance.currentServer.region_flag.ToString();
tables["pushurl"] = ServerListCenter.Instance.currentServer.region_domain;
@@ -75,7 +75,7 @@
tables["roleid"] = UIHelper.ServerStringTrim(PlayerDatas.Instance.baseData.PlayerName);
tables["level"] = PlayerDatas.Instance.baseData.LV.ToString();
tables["viplevel"] = PlayerDatas.Instance.baseData.VIPLv.ToString();
- HttpRequest.Instance.RequestHttpGet(StringUtility.Contact(exchangeUrl, HttpRequest.HashtablaToString(tables)), HttpRequest.defaultHttpContentType, 1, null);
+ HttpRequest.Instance.RequestHttpGet(StringUtility.Concat(exchangeUrl, HttpRequest.HashtablaToString(tables)), HttpRequest.defaultHttpContentType, 1, null);
}
// if (passward.Length > 1)
// {
--
Gitblit v1.8.0