Review change
This commit is contained in:
parent
f8c9e7af40
commit
77cc407386
1 changed files with 1 additions and 1 deletions
|
@ -625,7 +625,7 @@ static void InheritPokeball(struct Pokemon *egg, struct BoxPokemon *father, stru
|
||||||
|
|
||||||
#if P_BALL_INHERITING >= GEN_7
|
#if P_BALL_INHERITING >= GEN_7
|
||||||
if (fatherSpecies == motherSpecies)
|
if (fatherSpecies == motherSpecies)
|
||||||
inheritBall = (Random32() % 2 == 0 ? motherBall : fatherBall);
|
inheritBall = (Random() % 2 == 0 ? motherBall : fatherBall);
|
||||||
else if (motherSpecies != SPECIES_DITTO)
|
else if (motherSpecies != SPECIES_DITTO)
|
||||||
inheritBall = motherBall;
|
inheritBall = motherBall;
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue