Pokemon no longer get healed in PC

This commit is contained in:
infinitefusion
2023-07-01 17:37:51 -04:00
parent 368c5d4fc0
commit 9c8f9e9437
3 changed files with 8 additions and 4 deletions

View File

@@ -194,7 +194,7 @@ class PokemonStorage
raise "Trying to copy nil to storage" if !pkmn
pkmn.time_form_set = nil
pkmn.form = 0 if pkmn.isSpecies?(:SHAYMIN)
pkmn.heal
#pkmn.heal
self[boxDst,indexDst] = pkmn
end
return true
@@ -217,7 +217,7 @@ class PokemonStorage
if box>=0
pkmn.time_form_set = nil if pkmn.time_form_set
pkmn.form = 0 if pkmn.isSpecies?(:SHAYMIN)
pkmn.heal
#pkmn.heal
end
self[box,i] = pkmn
return true
@@ -230,7 +230,7 @@ class PokemonStorage
if @currentBox>=0
pkmn.time_form_set = nil
pkmn.form = 0 if pkmn.isSpecies?(:SHAYMIN)
pkmn.heal
#pkmn.heal
end
for i in 0...maxPokemon(@currentBox)
if self[@currentBox,i]==nil