From 3b2a6bb9047cfce9f501593b3669a9c1af6c5df4 Mon Sep 17 00:00:00 2001
From: lcy <1459594991@qq.com>
Date: 星期三, 05 十一月 2025 17:40:23 +0800
Subject: [PATCH] 130 战斗修改回合样式
---
Main/System/Recharge/RechargeManager.cs | 34 +++++++++++++++++-----------------
1 files changed, 17 insertions(+), 17 deletions(-)
diff --git a/Main/System/Recharge/RechargeManager.cs b/Main/System/Recharge/RechargeManager.cs
index c3460bf..5bf1598 100644
--- a/Main/System/Recharge/RechargeManager.cs
+++ b/Main/System/Recharge/RechargeManager.cs
@@ -262,7 +262,7 @@
for (int i = 0; i < _itemJson[jobstr].Count; i++)
{
m_FirstChargeItemDict[day][job].Add(new Item(int.Parse(_itemJson[jobstr][i][0].ToString()),
- int.Parse(_itemJson[jobstr][i][1].ToString())));
+ long.Parse(_itemJson[jobstr][i][1].ToString())));
}
}
@@ -613,15 +613,6 @@
}
- public struct RechargeCount
- {
- public int todayCount;
- public int totalCount;
- public int weekPayCount;
- public int monthPayCount;
- public int selectItemValue;
-
- }
public int FirstGoldServerDay = 0; //0琛ㄧず鏈厖鍊硷紝棣栧厖鏃朵负寮�鏈嶇鍑犲ぉ锛坥penday+1锛�
@@ -683,13 +674,13 @@
return 0;
}
- public void UpdateFirstChargeReward(HAA02_tagMCFirstGoldInfo package)
- {
- FirstGoldServerDay = package.FirstGoldServerDay;
- firstChargeRewardGet = package.FirstGoldRewardState;
- UpdateFirstRechargeRedpoint();
- UpdateRedpoint();
- }
+ // public void UpdateFirstChargeReward(HAA02_tagMCFirstGoldInfo package)
+ // {
+ // FirstGoldServerDay = package.FirstGoldServerDay;
+ // firstChargeRewardGet = package.FirstGoldRewardState;
+ // UpdateFirstRechargeRedpoint();
+ // UpdateRedpoint();
+ // }
private void UpdateFirstRechargeRedpoint()
{
@@ -768,3 +759,12 @@
}
+public struct RechargeCount
+{
+ public int todayCount;
+ public int totalCount;
+ public int weekPayCount;
+ public int monthPayCount;
+ public int selectItemValue;
+
+}
--
Gitblit v1.8.0