diff --git a/Data/Scripts/015_Trainers and player/005_Player_Pokedex.rb b/Data/Scripts/015_Trainers and player/005_Player_Pokedex.rb index 0cc1af5a3..608cde1f2 100644 --- a/Data/Scripts/015_Trainers and player/005_Player_Pokedex.rb +++ b/Data/Scripts/015_Trainers and player/005_Player_Pokedex.rb @@ -267,13 +267,14 @@ class Player < Trainer # @param region [Integer] # @return [Integer] def count_species(hash, region = -1) - ret = 0 - if region == -1 - GameData::Species.each { |s| ret += 1 if s.form == 0 && hash[s.species] } - else - pbAllRegionalSpecies(region).each { |s| ret += 1 if s && hash[s] } - end - return ret + return hash.size() + # ret = 0 + # if region == -1 + # GameData::Species.each { |s| ret += 1 if s.form == 0 && hash[s.species] } + # else + # pbAllRegionalSpecies(region).each { |s| ret += 1 if s && hash[s] } + # end + # return ret end end end diff --git a/Data/Scripts/016_UI/014_UI_Save.rb b/Data/Scripts/016_UI/014_UI_Save.rb index a51233dbb..dfc2164a1 100644 --- a/Data/Scripts/016_UI/014_UI_Save.rb +++ b/Data/Scripts/016_UI/014_UI_Save.rb @@ -51,6 +51,7 @@ class PokemonSave_Scene if $Trainer.has_pokedex loctext+=_INTL("Pokédex{2}/{3}",textColor,$Trainer.pokedex.owned_count,$Trainer.pokedex.seen_count) end + @sprites["locwindow"]=Window_AdvancedTextPokemon.new(loctext) @sprites["locwindow"].viewport=@viewport @sprites["locwindow"].x=0 diff --git a/Data/System.rxdata b/Data/System.rxdata index a00e725c8..b10e1b446 100644 Binary files a/Data/System.rxdata and b/Data/System.rxdata differ