Commit 8b65a363a37ac262adf3dba3ffebc44a58c4a646
1 parent
aad10fac
优化
Showing
2 changed files
with
2 additions
and
2 deletions
Show diff stats
src/actions/RoleAction.lua
... | ... | @@ -295,7 +295,7 @@ function _M.createRpc(agent, data) |
295 | 295 | return true |
296 | 296 | end |
297 | 297 | newRole:startActionUcode() |
298 | - newRole:award(globalCsv.birthItem, {log = {desc = "birth"}}) | |
298 | + newRole:award(globalCsv.birthItem, {log = {desc = "birth"}, notNotify = true}) | |
299 | 299 | -- 欢迎邮件 |
300 | 300 | redisproxy:insertEmail({roleId = roleId, emailId = 1}) |
301 | 301 | ... | ... |
src/models/RoleTimeReset.lua
... | ... | @@ -9,7 +9,7 @@ ResetFunc["CrossDay"] = function(self, notify, response) |
9 | 9 | self.dinerData:refreshDailyData(notify) |
10 | 10 | |
11 | 11 | self:setProperty("dTask", {}) |
12 | - self:advRandomSupportEffect() | |
12 | + self:advRandomSupportEffect(not notify) | |
13 | 13 | |
14 | 14 | self:checkExpireItem(not notify) |
15 | 15 | ... | ... |