11 lines
280 B
Lua
11 lines
280 B
Lua
|
local XRedPointConditionPlanetRunningNewChapter = {}
|
||
|
|
||
|
function XRedPointConditionPlanetRunningNewChapter.Check()
|
||
|
if XDataCenter.PlanetManager.CheckNewChapterRedPoint() then
|
||
|
return true
|
||
|
end
|
||
|
|
||
|
return false
|
||
|
end
|
||
|
|
||
|
return XRedPointConditionPlanetRunningNewChapter
|