Commit bb8c1d5709824766ef2e7ae408ae9aee9dbe6de2
1 parent
e1b5f6ec
取消抽卡保底的保底次数默认值,因为有些卡池不需要保底
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
src/actions/HeroAction.lua
| ... | ... | @@ -764,7 +764,7 @@ function _M.drawHeroRpc(agent, data) |
| 764 | 764 | local drawCount = {1, 10} -- 抽取次数 |
| 765 | 765 | if not drawCount[drawType] then return 3 end |
| 766 | 766 | |
| 767 | - local draw_floor_back_counts = globalCsv.draw_floor_back_counts[btype] or 10 | |
| 767 | + local draw_floor_back_counts = globalCsv.draw_floor_back_counts[btype] | |
| 768 | 768 | local floorHeroCount = role:getProperty("floorHero")[btype] or 0 |
| 769 | 769 | |
| 770 | 770 | -- 计算抽卡消耗品 | ... | ... |