Commit d9d51454789954dac41788a7782d7b6c22b47861
1 parent
706b517e
修改特权卡引用配置错误bug
Showing
2 changed files
with
3 additions
and
3 deletions
Show diff stats
src/models/Store.lua
| ... | ... | @@ -117,7 +117,7 @@ function Store:getHangSlotExtraCount() |
| 117 | 117 | return 0 |
| 118 | 118 | end |
| 119 | 119 | |
| 120 | - return csvdb.shop_priv_card_hang_slot_cnt or 4 | |
| 120 | + return globalCsv.shop_priv_card_hang_slot_cnt or 4 | |
| 121 | 121 | end |
| 122 | 122 | |
| 123 | 123 | -- 探索加速/餐厅加速 特权卡系数 |
| ... | ... | @@ -135,7 +135,7 @@ function Store:getTimeBoxSlotExtraCount() |
| 135 | 135 | return 0 |
| 136 | 136 | end |
| 137 | 137 | |
| 138 | - return csvdb.shop_priv_time_box_slot_cnt or 3 | |
| 138 | + return globalCsv.shop_priv_time_box_slot_cnt or 3 | |
| 139 | 139 | end |
| 140 | 140 | |
| 141 | 141 | -- 齿轮兑换 特权卡系数 | ... | ... |