• 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.
  • Ever thought it'd be cool to have your art, writing, or challenge runs featured on PokéCommunity? Click here for info - we'd love to spotlight your work!
  • 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