Update - 1.9.0.107

EN: 1.9.0.107
CN: 1.9.0.108
JP: 1.9.0.112
KR: 1.9.0.112
This commit is contained in:
SL1900
2026-05-14 16:00:00 +09:00
parent 4b880806ef
commit eafd8f4088
1034 changed files with 809589 additions and 23067 deletions
@@ -253,7 +253,7 @@ function DailyInstanceLevelSelectCtrl:RefreshGrid(goGrid, gridIndex)
self.mapLevelGrid[goGrid]:Refresh(nType)
end
function DailyInstanceLevelSelectCtrl:UnbindAllGrids()
for go, mapCtrl in ipairs(self.mapLevelGrid) do
for go, mapCtrl in pairs(self.mapLevelGrid) do
self:UnbindCtrlByNode(mapCtrl)
end
self.mapLevelGrid = {}
@@ -326,10 +326,10 @@ function DailyInstanceLevelSelectCtrl:RefreshDailyInstanceInfo(nType, nHard, bLo
self.curSelectHard = nHard
self._panel._tbParam[1] = self.curSelectHard
local mapDailyInstanceData = self.mapAllDailyInstance[nHard]
self.DailyInstance = mapDailyInstanceData.Id
if mapDailyInstanceData == nil then
return
end
self.DailyInstance = mapDailyInstanceData.Id
NovaAPI.SetTMPText(self._mapNode.TMPInstanceName, mapDailyInstanceData.Name)
NovaAPI.SetTMPText(self._mapNode.TMPInstanceDesc, mapDailyInstanceData.Desc)
self:SetPngSprite(self._mapNode.imgLevelImg, mapDailyInstanceData.Icon)
@@ -546,7 +546,6 @@ function DailyInstanceLevelSelectCtrl:OnEvent_UpdateWorldClass()
end
function DailyInstanceLevelSelectCtrl:OnEvent_UpdateEnergy()
local nHas = PlayerData.Base:GetCurEnergy()
self.curRequireEnergy = self.curRequireEnergy
NovaAPI.SetTMPColor(self._mapNode.txtTicketsCount, nHas.nEnergy < self.curRequireEnergy and Red_Unable or Blue_Normal)
end
return DailyInstanceLevelSelectCtrl