mirror of
https://github.com/kwsch/PKHeX
synced 2025-02-17 05:48:44 +00:00
fix minior dex set clamp
[0],[cores), ignore all other meteor forms thanks @sora10pls
This commit is contained in:
parent
1c42cbebb7
commit
3e60bcd5dc
1 changed files with 2 additions and 4 deletions
|
@ -1129,10 +1129,8 @@ namespace PKHeX.Core
|
|||
formEnd = 1;
|
||||
return true;
|
||||
|
||||
case 774 when formIn > 6: // Minior
|
||||
// Cores forms are after Meteor forms, so the game iterator would give all meteor forms (NO!)
|
||||
// So the game so the game chooses to only award entries for Core forms after they appear in battle.
|
||||
break; // resets to 0/0 if an invalid request is made (non-form entry)
|
||||
case 774 when formIn <= 6: // Minior
|
||||
break; // don't give meteor forms except the first
|
||||
|
||||
case 718 when formIn > 1:
|
||||
break;
|
||||
|
|
Loading…
Add table
Reference in a new issue