Update - 1.11.0.113

EN: 1.11.0.113
CN: 1.11.0.114
JP: 1.11.0.118
KR: 1.11.0.118
This commit is contained in:
SL1900
2026-06-02 16:00:00 +09:00
parent 343b24c91b
commit dcc2c4a2a9
621 changed files with 518699 additions and 4157 deletions
@@ -577,20 +577,20 @@ function RegionBossFormationCtrl:OnEnable()
end
elseif self.nType == AllEnum.RegionBossFormationType.WeeklyCopies then
self.selLvId = PlayerData.RogueBoss:GetSelLvId()
self.cacheData = PlayerData.RogueBoss:GetCacheWeeklyBossMsg(self.selLvId)
self.cacheData = PlayerData.RogueBoss:GetCacheWeeklyBuildID(self.selLvId)
self.isHaveTeam = false
local tempBuildId = PlayerData.RogueBoss:GetSelBuildId()
self.mbuildId = 0
if tempBuildId ~= 0 then
self.mbuildId = tempBuildId
elseif self.cacheData then
self.mbuildId = self.cacheData.BuildId
self.mbuildId = self.cacheData
elseif self.cacheData == nil then
local tempTab = ConfigTable.GetData("WeekBossLevel", self.selLvId)
if 1 < tempTab.Difficulty then
local tempCacheData = PlayerData.RogueBoss:GetCacheWeeklyBossMsg(tempTab.PreLevelId)
local tempCacheData = PlayerData.RogueBoss:GetCacheWeeklyBuildID(tempTab.PreLevelId)
if tempCacheData then
self.mbuildId = tempCacheData.BuildId
self.mbuildId = tempCacheData
end
end
end