corrupted data

This commit is contained in:
chardub
2025-03-26 18:25:57 -04:00
parent eba2c7c90c
commit dafa19fa38
25 changed files with 47 additions and 8 deletions

View File

@@ -857,17 +857,12 @@ def replaceFusionSpecies(pokemon, speciesToChange, newSpecies)
should_update_body = currentBody == speciesToChange
should_update_head = currentHead == speciesToChange
echoln speciesToChange
echoln currentBody
echoln currentHead
return if !should_update_body && !should_update_head
newSpeciesBody = should_update_body ? newSpecies : currentBody
newSpeciesHead = should_update_head ? newSpecies : currentHead
newSpecies = getFusionSpecies(newSpeciesBody, newSpeciesHead)
echoln newSpecies.id_number
pokemon.species = newSpecies
end

View File

@@ -73,7 +73,6 @@ def fetch_sprite_from_web(url, destinationPath)
return true
end
echoln "Failed to download #{url}"
echoln caller
return false
rescue MKXPError => e
echoln "MKXPError: #{e.message}"