fix抽卡次数限制
parent
c3ba340c11
commit
3d32285959
|
|
@ -350,7 +350,7 @@ public class ActivityLogic {
|
||||||
|
|
||||||
int count = secretBoxManager.getCount();
|
int count = secretBoxManager.getCount();
|
||||||
int[][] randDrop = new int[randCount][];
|
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 secretBoxRandomPool = getSecretBoxRandomPool(sDifferDemonsBoxSetting, count + i);
|
||||||
int[] dropInfos = getSecretBoxRewardByPool(secretBoxRandomPool);
|
int[] dropInfos = getSecretBoxRewardByPool(secretBoxRandomPool);
|
||||||
randDrop[i] = dropInfos;
|
randDrop[i] = dropInfos;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue