Hotfix - 1.13.0.126

EN: 1.13.0.126
CN: 1.13.0.126
JP: 1.13.0.130
KR: 1.13.0.132
This commit is contained in:
SL1900
2026-07-23 17:00:00 +09:00
parent 8c4bd41668
commit fb98bcdc16
27 changed files with 101 additions and 89 deletions
+2 -4
View File
@@ -645,8 +645,7 @@ function TraceHuntCtrl:UpdateTraceLogCount()
return nNewLogStart
end
function TraceHuntCtrl:RefreshTraceLogEmpty()
local nProgress = PlayerData.TraceHunt:GetTraceProgress()
self._mapNode.goTraceLogEmpty:SetActive(self.nTraceLogCount == 0 and nProgress == 0)
self._mapNode.goTraceLogEmpty:SetActive(self.nTraceLogCount == 0)
self._mapNode.goHuntLogEmpty:SetActive(false)
end
function TraceHuntCtrl:RefreshHunt()
@@ -718,9 +717,8 @@ function TraceHuntCtrl:RefreshHuntLog()
self:RefreshHuntLogEmpty()
end
function TraceHuntCtrl:RefreshHuntLogEmpty()
local nProgress = PlayerData.TraceHunt:GetHuntProgress()
self._mapNode.goTraceLogEmpty:SetActive(false)
self._mapNode.goHuntLogEmpty:SetActive(self.nHuntLogCount == 0 and nProgress == 0)
self._mapNode.goHuntLogEmpty:SetActive(self.nHuntLogCount == 0)
end
function TraceHuntCtrl:RefreshHuntAddLog()
local tbLog = PlayerData.TraceHunt:GetHuntLog()