From b4d7b98ffa412398224044aa25b85f92118ede8e Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期四, 16 五月 2024 18:43:39 +0800 Subject: [PATCH] 10156 副本功能玩法关联回合战斗表现(竞技场挑战券优化) --- ServerPython/CoreServerGroup/GameServer/Script/ChPyNetSendPack.py | 12 ++++-------- 1 files changed, 4 insertions(+), 8 deletions(-) diff --git a/ServerPython/CoreServerGroup/GameServer/Script/ChPyNetSendPack.py b/ServerPython/CoreServerGroup/GameServer/Script/ChPyNetSendPack.py index 2d177a2..77943dc 100644 --- a/ServerPython/CoreServerGroup/GameServer/Script/ChPyNetSendPack.py +++ b/ServerPython/CoreServerGroup/GameServer/Script/ChPyNetSendPack.py @@ -18965,9 +18965,8 @@ ("SubCmd", c_ubyte), ("IsReset", c_ubyte), #是否是重置的 ("Score", c_int), #当前积分 - ("BattleCountToday", c_ubyte), #今日已挑战次数 ("MatchRefreshCount", c_ubyte), #当前已刷新匹配列表次数,每次挑战后会重置 - ("ItemAddBattleCountToday", c_ubyte), #今日已使用物品增加的挑战次数 + ("BattleCount", c_ubyte), #当前可挑战次数 ] def __init__(self): @@ -18986,9 +18985,8 @@ self.SubCmd = 0xC3 self.IsReset = 0 self.Score = 0 - self.BattleCountToday = 0 self.MatchRefreshCount = 0 - self.ItemAddBattleCountToday = 0 + self.BattleCount = 0 return def GetLength(self): @@ -19003,18 +19001,16 @@ SubCmd:%s, IsReset:%d, Score:%d, - BattleCountToday:%d, MatchRefreshCount:%d, - ItemAddBattleCountToday:%d + BattleCount:%d '''\ %( self.Cmd, self.SubCmd, self.IsReset, self.Score, - self.BattleCountToday, self.MatchRefreshCount, - self.ItemAddBattleCountToday + self.BattleCount ) return DumpString -- Gitblit v1.8.0