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

11 lines
No EOL
390 B
Lua

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