PGRData/Script/matrix/xredpoint/xredpointconditions/XRedPointConditionSTRoleInDult.lua

10 lines
369 B
Lua
Raw Normal View History

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