diff options
author | Meowsy <Meowsy@users.noreply.github.com> | 2018-12-18 09:20:43 -0500 |
---|---|---|
committer | Meowsy <Meowsy@users.noreply.github.com> | 2018-12-18 09:20:43 -0500 |
commit | 9ca27f1332dd2c700292cfdcefc5c9412847fc0e (patch) | |
tree | e711905d0039f0894428e5169612b30ef535d09a /src | |
parent | e92245ab0693b8dac48e0a4b9445015572a5091f (diff) |
Document return value.
Diffstat (limited to 'src')
-rw-r--r-- | src/pokemon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pokemon.c b/src/pokemon.c index 50f0a1ac2..004dac0d5 100644 --- a/src/pokemon.c +++ b/src/pokemon.c @@ -5939,7 +5939,7 @@ u16 SpeciesToCryId(u16 species) return species; if (species < SPECIES_TREECKO - 1) - return 200; + return SPECIES_UNOWN - 1; return gSpeciesIdToCryId[species - (SPECIES_TREECKO - 1)]; } |