Commit 7bc5b662c26bbd7a6227e50e8c446e404709e343
1 parent
c2c9dc14
检查回归者活动,走正常的时间判断
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
src/models/RoleTimeReset.lua
... | ... | @@ -29,8 +29,8 @@ ResetFunc["CrossDay"] = function(self, notify, response, now) |
29 | 29 | end |
30 | 30 | |
31 | 31 | -- 检查回归者 |
32 | - -- if (now - ltime) >= 86400 * globalCsv.returner_time then | |
33 | - if true then | |
32 | + if (now - ltime) >= 86400 * globalCsv.returner_time then | |
33 | + -- if true then | |
34 | 34 | self:checkReturner() |
35 | 35 | end |
36 | 36 | ... | ... |