PGRData/Resources/Scripts/XRedPoint/XRedPointConditions/XRedPointConditionSTRoleInDult.lua

10 lines
369 B
Lua
Raw Normal View History

2022-12-26 08:36:01 +00:00
local XRedPointConditionSTRoleInDult = {}
function XRedPointConditionSTRoleInDult.Check()
local superTowerManager = XDataCenter.SuperTowerManager
-- 活动没开启不处理
if superTowerManager.GetIsEnd() then return false end
return XDataCenter.SuperTowerManager.GetRoleManager():CheckRoleInDultShowRedDot()
end
return XRedPointConditionSTRoleInDult