• Just a reminder that providing specifics on, sharing links to, or naming websites where ROMs can be accessed is against the rules. If your post has any of this information it will be removed.
  • Our friends from the Johto Times are hosting a favorite Pokémon poll - and we'd love for you to participate! Click here for information on how to vote for your favorites!
  • Serena, Kris, Dawn, Red - which Pokémon protagonist is your favorite? Let us know by voting in our grand final favorite protagonist poll!
  • PokéCommunity supports the Stop Killing Games movement. If you're a resident of the UK or EU, consider signing one of the petitions to stop publishers from destroying games. Click here for more information!
  • Welcome to PokéCommunity! Register now and join one of the best fan communities on the 'net to talk Pokémon and more! We are not affiliated with The Pokémon Company or Nintendo.

[Error] Primal Reversion Errors

  • 20
    Posts
    7
    Years
    • Seen Aug 29, 2020
    So whenever I use primal reversion in battle it works but my pokemon doesn't return back to normal it just stays as primal groudon.
     
    What version are you using?
     
    Nevermind just fixed it Apparently in version 16.2 there are missing pieces of code in PField_Field which allow primal evolution I just added it in there the same way makeUnmega was put in there
     
    Nevermind just fixed it Apparently in version 16.2 there are missing pieces of code in PField_Field which allow primal evolution I just added it in there the same way makeUnmega was put in there

    Can you post what changes you made? This way, thanks you, any dev that uses v16 can fix this problem, like you did.

    Thanks in advanced!
     
    Oh All I did was change this line of code


    def makeUnprimal
    v=MultipleForms.call("getUnprimalForm",self)
    self.form=(v!=nil) ? v : 0
    end
    end


    to this


    def makeUnprimal
    v=MultipleForms.call("getUnprimalForm",self)
    if v!=nil; self.form=v
    elsif isPrimal?; self.form=0
    end
    end
     
    Back
    Top