Update - 1.9.0.103

EN: 1.9.0.103
CN: 1.9.0.104
JP: 1.9.0.106
KR: 1.9.0.108
This commit is contained in:
SL1900
2026-04-18 00:15:00 +09:00
parent 35fe1f046d
commit e0549005e1
1150 changed files with 941124 additions and 19847 deletions
@@ -127,14 +127,16 @@ function StarTowerBuildContentCtrl:InitPotential()
self._mapNode.goPotentialList.gameObject:SetActive(not bEmpty)
end
function StarTowerBuildContentCtrl:InitDisc()
local mapTowerCfg = ConfigTable.GetData("StarTower", self.mapBuild.nTowerId)
local tbNote = {}
if mapTowerCfg ~= nil then
local nDropGroup = mapTowerCfg.SubNoteSkillDropGroupId
local tbNoteDrop = CacheTable.GetData("_SubNoteSkillDropGroup", nDropGroup)
if tbNoteDrop ~= nil then
for _, v in ipairs(tbNoteDrop) do
table.insert(tbNote, v.SubNoteSkillId)
if self.mapBuild.nTowerId ~= nil then
local mapTowerCfg = ConfigTable.GetData("StarTower", self.mapBuild.nTowerId)
if mapTowerCfg ~= nil then
local nDropGroup = mapTowerCfg.SubNoteSkillDropGroupId
local tbNoteDrop = CacheTable.GetData("_SubNoteSkillDropGroup", nDropGroup)
if tbNoteDrop ~= nil then
for _, v in ipairs(tbNoteDrop) do
table.insert(tbNote, v.SubNoteSkillId)
end
end
end
end
@@ -170,6 +172,9 @@ function StarTowerBuildContentCtrl:InitDisc()
if mapDisc == nil then
mapDisc = PlayerData.Disc:GetTrialDiscById(nId)
end
if mapDisc == nil then
mapDisc = PlayerData.Disc:GetRankDetailDisc(nId)
end
if mapDisc ~= nil then
local tbSubSkill = mapDisc:GetAllSubSkill(self.mapBuild.tbNotes)
for nSkillIndex, v in ipairs(tbSubSkill) do