mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-14 00:07:15 +00:00
Fixes obedience flag to fateful encounter flag for palparking. (#1024)
This commit is contained in:
parent
65fab7542e
commit
0d65973421
1 changed files with 1 additions and 1 deletions
|
@ -239,7 +239,7 @@ namespace PKHeX.Core
|
|||
pk4.Move3_PP = pk4.getMovePP(pk4.Move3, pk4.Move3_PPUps);
|
||||
pk4.Move4_PP = pk4.getMovePP(pk4.Move4, pk4.Move4_PPUps);
|
||||
|
||||
pk4.FatefulEncounter = Met_Location == 0xFF || FatefulEncounter; // obedience flag
|
||||
pk4.FatefulEncounter = FatefulEncounter; // obedience flag
|
||||
|
||||
// Remaining Ribbons
|
||||
pk4.RibbonG3Cool |= RibbonCountG3Cool > 0;
|
||||
|
|
Loading…
Reference in a new issue