Added more save data conversions

This commit is contained in:
Maruno17
2021-03-01 19:12:32 +00:00
parent fa99c2bcd7
commit ec742ac5f2
9 changed files with 124 additions and 43 deletions

View File

@@ -51,7 +51,7 @@ class PokeBattle_Trainer
ret.character_ID = trainer.metaID if trainer.metaID
ret.outfit = trainer.outfit if trainer.outfit
ret.language = trainer.language if trainer.language
trainer.party.each { |p| ret.party.push(PokeBattle_Pokemon.copy(p)) }
trainer.party.each { |p| ret.party.push(PokeBattle_Pokemon.convert(p)) }
ret.badges = trainer.badges.clone
ret.money = trainer.money
trainer.seen.each_with_index { |value, i| ret.set_seen(i) if value }