From 77cc4073867cb5d5d1b9250ac3d88684c1d0013c Mon Sep 17 00:00:00 2001 From: Eduardo Quezada Date: Thu, 12 Jan 2023 23:44:34 -0300 Subject: [PATCH] Review change --- src/daycare.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/daycare.c b/src/daycare.c index 08ca31da0c..aeeded43d3 100644 --- a/src/daycare.c +++ b/src/daycare.c @@ -625,7 +625,7 @@ static void InheritPokeball(struct Pokemon *egg, struct BoxPokemon *father, stru #if P_BALL_INHERITING >= GEN_7 if (fatherSpecies == motherSpecies) - inheritBall = (Random32() % 2 == 0 ? motherBall : fatherBall); + inheritBall = (Random() % 2 == 0 ? motherBall : fatherBall); else if (motherSpecies != SPECIES_DITTO) inheritBall = motherBall; else