mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 12:33:06 +00:00
Revert "Loop shiny force regardless of format"
This reverts commit cc8e5d9c32
.
This commit is contained in:
parent
509e2f1fa3
commit
5240e67a14
1 changed files with 3 additions and 0 deletions
|
@ -140,6 +140,9 @@ namespace PKHeX.Core
|
|||
{
|
||||
pk.SetShiny();
|
||||
|
||||
if (pk.Format <= 7)
|
||||
return true;
|
||||
|
||||
var xor = pk.ShinyXor;
|
||||
if (xor0 ? xor == 0 : xor != 0)
|
||||
return true;
|
||||
|
|
Loading…
Reference in a new issue