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

15 lines
414 B
Lua
Raw Normal View History

2022-12-26 08:36:01 +00:00
local XRedPointConditionMoeWarRecruit = {}
local Events = nil
function XRedPointConditionMoeWarRecruit.GetSubEvents()
Events = Events or
{
XRedPointEventElement.New(XEventId.EVENT_MOE_WAR_CHECK_RECRUIT_RED_POINT),
}
return Events
end
function XRedPointConditionMoeWarRecruit.Check()
return XDataCenter.MoeWarManager.CheckAllHelpersRedPoint()
end
return XRedPointConditionMoeWarRecruit