mirror of
https://github.com/infinitefusion/infinitefusion-e18.git
synced 2025-12-06 06:01:46 +00:00
various bugfixes 5.0.18
This commit is contained in:
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -146,7 +146,7 @@ class Pokemon
|
||||
|
||||
def hasBodyOf?(check_species)
|
||||
if !self.isFusion?
|
||||
return isSpecies(check_species)
|
||||
return isSpecies?(check_species)
|
||||
end
|
||||
bodySpecies = getBodyID(species)
|
||||
checkSpeciesId = getID(nil,check_species)
|
||||
@@ -155,7 +155,7 @@ class Pokemon
|
||||
|
||||
def hasHeadOf?(check_species)
|
||||
if !self.isFusion?
|
||||
return isSpecies(check_species)
|
||||
return isSpecies?(check_species)
|
||||
end
|
||||
headSpecies = getHeadID(species)
|
||||
checkSpeciesId = getID(nil,check_species)
|
||||
|
||||
@@ -1344,7 +1344,7 @@ class PokemonSummaryScreen
|
||||
loop do
|
||||
ret = @scene.pbChooseMoveToForget(move_to_learn)
|
||||
break if ret < 0 || !move_to_learn
|
||||
break if $DEBUG || !party[partyindex].moves[ret].hidden_move?
|
||||
# break if $DEBUG || !party[partyindex].moves[ret].hidden_move?
|
||||
pbMessage(_INTL("HM moves can't be forgotten now.")) { @scene.pbUpdate }
|
||||
end
|
||||
@scene.pbEndScene
|
||||
|
||||
Binary file not shown.
Reference in New Issue
Block a user