Telemetius
Tele*
- 267
- Posts
- 10
- Years
- Italy
- Seen Jan 9, 2022
Not sure if anyone had said this, but when updated to 16.2, Pokemon will stay in their Mega forms after battle. I tested it both in my updated game and in a clean version of Essentials 16 updated to 16.2 (I had to go in an add the Mega ring and Mega stone, otherwise unmodified). Tried with multiple Pokemon in my game, they do not "unmega" after battle as they did in previous versions. It still presents the option to mega evolve in the beginning of the next battle, but if you press Z, it just continues the battle as if you didn't mega evolve (and you're already in the form, so I guess you did).
Ok so in 16.2 this:
Code:
def makeUnmega
v=MultipleForms.call("getUnmegaForm",self)
self.form=(v!=nil) ? v : 0
end
became:
Code:
def makeUnmega
v=MultipleForms.call("getUnmegaForm",self)
#self.form=(v!=nil) ? v : 0
self.form=v if v!=nil
end
Switching back to the old piece of code will revert back your Pokémons to their unmega forms after battle.
Last edited: