英雄心愿实际概率改成8中1(12%概率),展示概率依旧为15%
parent
16274993ce
commit
87f3dc9948
|
|
@ -972,8 +972,8 @@ public class HeroLogic {
|
|||
fiveStarHeroCount = 3;
|
||||
}
|
||||
boolean choosed = false;
|
||||
if(type == 1){//英雄,每7次出一个(15%概率)
|
||||
int value = fiveStarHeroCount % 7;
|
||||
if(type == 1){//英雄,每8次出一个(12%概率,显示15%)
|
||||
int value = fiveStarHeroCount % 8;
|
||||
if(value == 0){
|
||||
choosed = true;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue