Commit aae5689611581d2b43053e00c0da054ef899f1c3
1 parent
4839b94d
特权卡bug
Showing
2 changed files
with
2 additions
and
2 deletions
Show diff stats
src/models/Store.lua
... | ... | @@ -176,7 +176,7 @@ end |
176 | 176 | -- 挂机道具掉落系数 特权卡挂机掉落系数 |
177 | 177 | function Store:getHangDropCoef() |
178 | 178 | if self:isPrivCardExpire() then |
179 | - return 0, 0 | |
179 | + return 1, 1 | |
180 | 180 | end |
181 | 181 | |
182 | 182 | return (1 + globalCsv.hang_drop_exp_coef) or 1, (1 + globalCsv.hang_drop_item_coef) or 1 | ... | ... |