PGRData/Resources/Scripts/XRedPoint/XRedPointConditions/XRedPointConditionSTRoleLevelUp.lua
2022-12-26 14:06:01 +05:30

11 lines
No EOL
400 B
Lua

local XRedPointConditionSTRoleLevelUp = {}
function XRedPointConditionSTRoleLevelUp.Check(roleId)
local superTowerManager = XDataCenter.SuperTowerManager
-- 活动没开启不处理
if superTowerManager.GetIsEnd() then return false end
return XDataCenter.SuperTowerManager.GetRoleManager()
:CheckRolesSuperLevelUpShowRedDot(roleId)
end
return XRedPointConditionSTRoleLevelUp