fix抽卡次数限制

back_recharge
wangyuan 2019-06-05 15:29:15 +08:00
parent c3ba340c11
commit 3d32285959
1 changed files with 1 additions and 1 deletions

View File

@ -350,7 +350,7 @@ public class ActivityLogic {
int count = secretBoxManager.getCount();
int[][] randDrop = new int[randCount][];
for(int i=0;i<randCount;i++){
for(int i=1;i<=randCount;i++){
int secretBoxRandomPool = getSecretBoxRandomPool(sDifferDemonsBoxSetting, count + i);
int[] dropInfos = getSecretBoxRewardByPool(secretBoxRandomPool);
randDrop[i] = dropInfos;