From ac7a38850b223d59d11881784336583ddd76c565 Mon Sep 17 00:00:00 2001 From: TheXaman Date: Thu, 11 Feb 2021 19:47:24 +0100 Subject: [PATCH] fixed small bug in calcing times --- src/pokedex.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/pokedex.c b/src/pokedex.c index 02f7d69301..5fa51ea292 100644 --- a/src/pokedex.c +++ b/src/pokedex.c @@ -7207,9 +7207,8 @@ static void PrintEvolutionTargetSpeciesAndMethod(u8 taskId, u16 species) if(gEvolutionTable[species][i].method != 0 && gEvolutionTable[species][i].method != EVO_MEGA_EVOLUTION) times += 1; #endif - times += 1; - gTasks[taskId].data[3] = times; } + gTasks[taskId].data[3] = times; //If there are no evolutions print text if (times == 0)