Replace all usage of pbNewPkmn with Pokemon.new

This commit is contained in:
Joni Savolainen
2020-09-20 21:34:06 +03:00
parent 1b7ec64d98
commit 7257c7479f
11 changed files with 18 additions and 18 deletions

View File

@@ -76,7 +76,7 @@ def pbLoadTrainer(trainerid,trainername,partyid=0)
for poke in trainer[3]
species = pbGetSpeciesFromFSpecies(poke[TPSPECIES])[0]
level = poke[TPLEVEL]
pokemon = pbNewPkmn(species,level,opponent,false)
pokemon = Pokemon.new(species,level,opponent,false)
if poke[TPFORM]
pokemon.forcedForm = poke[TPFORM] if MultipleForms.hasFunction?(pokemon.species,"getForm")
pokemon.formSimple = poke[TPFORM]