This commit is contained in:
DESKTOP-SAJ6RKV\Administrator 2025-06-13 05:57:07 +08:00
parent 6c4d5964a8
commit 3b726c9144

View File

@ -129,14 +129,14 @@ public class DataGameModelManager : GameBase.Singleton<DataGameModelManager>
postPlayRankData.name = item.Value.protCustMessageData.nickName;
postPlayRankData.score = item.Value.m_Score;
postPlayRankData.pay = 0;
postPlayRankData.winCount = item.Value.m_GongXian + (item.Value.m_GongXianScore % 10000);
postPlayRankData.winCount = item.Value.m_GongXian + (item.Value.m_GongXianScore / 10000);
postPlayRankData.useClientData = "1";
postPlayRankData.avatar = item.Value.protCustMessageData.imgURL;
postPlayRankData.exp = item.Value.protCustMessageData.rankRo.exp;
postPlayRankData.lv = item.Value.protCustMessageData.rankRo.lv;
postPlayRankData.campName = DataGameSceneManager.Instance.GetStrs(int.Parse(item.Value.teamId) - 1);
Log.Debug("玩家:{0},贡献积分分配{1}", item.Value.protCustMessageData.nickName, (item.Value.m_GongXianScore % 10000));
Log.Debug("玩家:{0},贡献积分分配{1}", item.Value.protCustMessageData.nickName, (item.Value.m_GongXianScore / 10000));
rankInfos.Add(postPlayRankData);
}