Commit 7bc5b662c26bbd7a6227e50e8c446e404709e343

Authored by chenyueqi
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,8 +29,8 @@ ResetFunc["CrossDay"] = function(self, notify, response, now)
29 end 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 self:checkReturner() 34 self:checkReturner()
35 end 35 end
36 36