From 36aec16b00bb06b6c7dc02f48f8c2d2400de7833 Mon Sep 17 00:00:00 2001 From: Martin Griffin Date: Tue, 11 Nov 2025 09:22:34 +0000 Subject: [PATCH 1/2] test/daycare.c: Only enabled species --- test/daycare.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/daycare.c b/test/daycare.c index 1f142f1154..3792737030 100644 --- a/test/daycare.c +++ b/test/daycare.c @@ -51,7 +51,10 @@ TEST("(Daycare) Pokémon can breed with Ditto if they don't belong to the Ditto ZeroPlayerPartyMons(); for (j = 1; j < NUM_SPECIES; j++) - PARAMETRIZE { parentSpecies = j; } + { + if (IsSpeciesEnabled(j)) + PARAMETRIZE { parentSpecies = j; } + } VarSet(VAR_TEMP_C, parentSpecies); RUN_OVERWORLD_SCRIPT( givemon SPECIES_DITTO, 100; givemon VAR_TEMP_C, 100; From d57cc5f3733ba9236579959c436533d9737739a3 Mon Sep 17 00:00:00 2001 From: Martin Griffin Date: Tue, 11 Nov 2025 17:06:50 +0000 Subject: [PATCH 2/2] test/species.c: Only enabled species --- test/species.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/species.c b/test/species.c index 06351f179e..c4d91e60e5 100644 --- a/test/species.c +++ b/test/species.c @@ -106,7 +106,7 @@ TEST("No species has two evolutions that use the evolution tracker") for (i = 0; i < NUM_SPECIES; i++) { - if (GetSpeciesEvolutions(i) != NULL) PARAMETRIZE { species = i; } + if (IsSpeciesEnabled(i) && GetSpeciesEvolutions(i) != NULL) PARAMETRIZE { species = i; } } evolutionTrackerEvolutions = 0;