forked from endernon/PGRData
12 lines
251 B
Lua
12 lines
251 B
Lua
|
local XRedPointConditionRiftEntrance = {}
|
||
|
|
||
|
function XRedPointConditionRiftEntrance.Check()
|
||
|
-- 任务
|
||
|
if XDataCenter.RiftManager.CheckTaskCanReward() then
|
||
|
return true
|
||
|
end
|
||
|
|
||
|
return false
|
||
|
end
|
||
|
|
||
|
return XRedPointConditionRiftEntrance
|