Commit a27e74bf53da9b4a5d95e671ce4900598b023e7b
1 parent
ff692d37
月重置
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
src/utils/CommonFunc.lua
... | ... | @@ -100,7 +100,7 @@ end |
100 | 100 | -- 判断是不是同一个月 |
101 | 101 | function isCrossMonth(target, now) |
102 | 102 | now = now or skynet.timex() |
103 | - local tarTm = os.date("*t", target) | |
103 | + local tarTm = os.date("*t", target - RESET_TIME * 3600) | |
104 | 104 | local nowTm = os.date("*t", now - RESET_TIME * 3600) |
105 | 105 | if tarTm.year == nowTm.year and tarTm.month == nowTm.month then |
106 | 106 | return false | ... | ... |