diff --git a/Data/Scripts/050_AddOns/New Items effects.rb b/Data/Scripts/050_AddOns/New Items effects.rb index 710e9f0a6..fb0c39fee 100644 --- a/Data/Scripts/050_AddOns/New Items effects.rb +++ b/Data/Scripts/050_AddOns/New Items effects.rb @@ -1377,14 +1377,15 @@ def pbDNASplicing(pokemon, scene, supersplicers = false, superSplicer = false) poke1.exp = exp_body poke2.exp = exp_head end - + body_level=poke1.level + head_level=poke2.level if $Trainer.party.length >= 6 if (keepInParty == 0) $PokemonStorage.pbStoreCaught(poke2) scene.pbDisplay(_INTL("{1} was sent to the PC.", poke2.name)) else - poke2 = PokeBattle_Pokemon.new(bodyPoke, lev, $Trainer) - poke1 = PokeBattle_Pokemon.new(headPoke, lev, $Trainer) + poke2 = Pokemon.new(bodyPoke, body_level) + poke1 = Pokemon.new(headPoke, head_level) $PokemonStorage.pbStoreCaught(poke2) scene.pbDisplay(_INTL("{1} was sent to the PC.", poke2.name)) diff --git a/Data/System.rxdata b/Data/System.rxdata index 0545475f3..05ddfd55d 100644 Binary files a/Data/System.rxdata and b/Data/System.rxdata differ