Merge pull request #516 from C-Garza/fix-order-error

Update build.py
This commit is contained in:
Alessandro Pezzè 2020-08-09 00:05:51 +02:00 committed by GitHub
commit d959709813
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1278,7 +1278,7 @@ def _build_pokemons():
has_gender_differences=bool(int(info[13])),
growth_rate_id=int(info[14]),
forms_switchable=bool(int(info[15])),
order=int(info[16]),
order=int(info[18]),
)
build_generic((PokemonSpecies,), "pokemon_species.csv", csv_record_to_objects)