mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-10 22:54:14 +00:00
Fix arceus form 4->5
Form needs to be reset when removing the held plate
This commit is contained in:
parent
d053be9d5b
commit
cdd82be704
1 changed files with 4 additions and 0 deletions
|
@ -443,6 +443,10 @@ namespace PKHeX
|
|||
MetDate = moment
|
||||
};
|
||||
|
||||
// Arceus Type Changing -- Plate forcibly removed.
|
||||
if (pk5.Species == 493)
|
||||
pk5.AltForm = 0;
|
||||
|
||||
// Fix PP
|
||||
pk5.Move1_PP = pk5.getMovePP(pk5.Move1, pk5.Move1_PPUps);
|
||||
pk5.Move2_PP = pk5.getMovePP(pk5.Move2, pk5.Move2_PPUps);
|
||||
|
|
Loading…
Reference in a new issue