From d11fd21cd6f886b9066140239a86264ca0e09032 Mon Sep 17 00:00:00 2001 From: GhoulMage Date: Mon, 21 Oct 2024 12:33:21 +0200 Subject: [PATCH] Changing EVO_NONE from 0xFFFE to 0 (#5547) --- include/constants/pokemon.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/constants/pokemon.h b/include/constants/pokemon.h index 8095367c97..b29860812c 100644 --- a/include/constants/pokemon.h +++ b/include/constants/pokemon.h @@ -245,7 +245,7 @@ // Evolution types #define EVOLUTIONS_END 0xFFFF // Not an actual evolution, used to mark the end of an evolution array. -#define EVO_NONE 0xFFFE // Not an actual evolution, used to generate offspring that can't evolve into the specified species, like regional forms. +#define EVO_NONE 0 // Not an actual evolution, used to generate offspring that can't evolve into the specified species, like regional forms. #define EVO_FRIENDSHIP 1 // Pokémon levels up with friendship ≥ 220 #define EVO_FRIENDSHIP_DAY 2 // Pokémon levels up during the day with friendship ≥ 220 #define EVO_FRIENDSHIP_NIGHT 3 // Pokémon levels up at night with friendship ≥ 220