修改上报参数,bug修复

This commit is contained in:
xiekaidong 2023-07-11 10:20:37 +08:00
parent b1561991c6
commit 552e604167
3 changed files with 8 additions and 2 deletions

View File

@ -487,7 +487,7 @@ function BIReport:postFightBegin(battleType, wave, chapterId, maxChapter, startT
event_type = BIReport.FIGHT_OPT_TYPE.START, event_type = BIReport.FIGHT_OPT_TYPE.START,
wave_id = wave, wave_id = wave,
chapter_id = chapterId, chapter_id = chapterId,
max_chapter = maxChapter, fight_max_chapter = maxChapter,
start_times = startTimes, start_times = startTimes,
} }
args.formation, args.famation_level = DataManager.FormationData:getStageFormationBIStr() args.formation, args.famation_level = DataManager.FormationData:getStageFormationBIStr()

View File

@ -74,10 +74,12 @@ function DataManager:checkDataBind()
if name == "BagData" then if name == "BagData" then
changeBindFunc(baseData.ItemData, self[name].ItemData) changeBindFunc(baseData.ItemData, self[name].ItemData)
else else
if baseData ~= self[name] then
changeBindFunc(baseData, self[name]) changeBindFunc(baseData, self[name])
end end
end end
end end
end
end end
function DataManager:clear() function DataManager:clear()

View File

@ -519,6 +519,10 @@ if NOT_PUBLISH then
battleController.battleUI:initGridCell() battleController.battleUI:initGridCell()
end end
end end
if Input.GetKeyDown(KeyCode.LeftArrow) and Input.GetKey(KeyCode.F) then
ModuleManager.LoginManager:reloginOnReconnectRefuse()
end
end end
Game._releaseOnApplicationFocus = Game.onApplicationFocus Game._releaseOnApplicationFocus = Game.onApplicationFocus