mirror of
https://github.com/rh-hideout/pokeemerald-expansion.git
synced 2026-04-28 11:17:13 -05:00
test/daycare.c: Only enabled species
This commit is contained in:
parent
d9797fa01d
commit
36aec16b00
|
|
@ -51,7 +51,10 @@ TEST("(Daycare) Pokémon can breed with Ditto if they don't belong to the Ditto
|
||||||
|
|
||||||
ZeroPlayerPartyMons();
|
ZeroPlayerPartyMons();
|
||||||
for (j = 1; j < NUM_SPECIES; j++)
|
for (j = 1; j < NUM_SPECIES; j++)
|
||||||
PARAMETRIZE { parentSpecies = j; }
|
{
|
||||||
|
if (IsSpeciesEnabled(j))
|
||||||
|
PARAMETRIZE { parentSpecies = j; }
|
||||||
|
}
|
||||||
VarSet(VAR_TEMP_C, parentSpecies);
|
VarSet(VAR_TEMP_C, parentSpecies);
|
||||||
RUN_OVERWORLD_SCRIPT(
|
RUN_OVERWORLD_SCRIPT(
|
||||||
givemon SPECIES_DITTO, 100; givemon VAR_TEMP_C, 100;
|
givemon SPECIES_DITTO, 100; givemon VAR_TEMP_C, 100;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user