Rename MAX_POKEMON_NAME_SIZE to MAX_NAME_SIZE

in Pokemon
This commit is contained in:
Joni Savolainen
2020-09-20 21:25:39 +03:00
parent 61ad59afa6
commit 1b7ec64d98
9 changed files with 18 additions and 13 deletions

View File

@@ -450,7 +450,7 @@ class PokeBattle_Scene
# Opens the nicknaming screen for a newly caught Pokémon
#=============================================================================
def pbNameEntry(helpText,pkmn)
return pbEnterPokemonName(helpText, 0, Pokemon::MAX_POKEMON_NAME_SIZE, "", pkmn)
return pbEnterPokemonName(helpText, 0, Pokemon::MAX_NAME_SIZE, "", pkmn)
end
#=============================================================================