This commit is contained in:
infinitefusion
2024-06-29 14:16:17 -04:00
19 changed files with 5 additions and 5 deletions

View File

@@ -5,8 +5,8 @@
#==============================================================================#
module Settings
# The version of your game. It has to adhere to the MAJOR.MINOR.PATCH format.
GAME_VERSION = '6.2.0'
GAME_VERSION_NUMBER = "6.2.0"
GAME_VERSION = '6.2.1'
GAME_VERSION_NUMBER = "6.2.1"
POKERADAR_LIGHT_ANIMATION_RED_ID = 17
POKERADAR_LIGHT_ANIMATION_GREEN_ID = 18

View File

@@ -10,7 +10,7 @@ class PokeRadar_UI
ICON_LINE_END = 450
GRAPHICS_Z = 99999
GRAPHICS_Z = 99998
def initialize(seenPokemon = [], unseenPokemon = [], rarePokemon = [])
@seen_pokemon = seenPokemon

View File

@@ -27,7 +27,7 @@ Events.onWildPokemonCreate+=proc {|sender,e|
if player_on_hidden_ability_map || isAlwaysHiddenAbilityMap($game_map.map_id)
pokemon=e[0]
chosenAbility = pokemon.getAbilityList.sample #format: [[:ABILITY, index],...]
#pokemon.ability = chosenAbility[0]
pokemon.ability = chosenAbility[0]
pokemon.ability_index = chosenAbility[1]
end
}

View File

@@ -64,7 +64,7 @@ def migrateOldSavesToCharacterCustomization()
$Trainer.unlocked_hairstyles = [Settings::DEFAULT_OUTFIT_MALE, Settings::DEFAULT_OUTFIT_FEMALE]
end
if !$Trainer.clothes || !$Trainer.hair || !$Trainer.hat
if !$Trainer.clothes || !$Trainer.hair #|| !$Trainer.hat
setupStartingOutfit()
end
end