mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-10 22:54:14 +00:00
Update WC8.cs
This commit is contained in:
parent
5c7f992ea9
commit
035bac1ed3
1 changed files with 4 additions and 0 deletions
|
@ -95,6 +95,10 @@ namespace PKHeX.Core
|
|||
if (type != Shiny.FixedValue)
|
||||
return false;
|
||||
|
||||
// Player owned anti-shiny fixed PID
|
||||
if (TID == 0 && SID == 0)
|
||||
return false;
|
||||
|
||||
var pid = PID;
|
||||
var psv = (int)((pid >> 16 ^ (pid & 0xFFFF)) >> 4);
|
||||
var tsv = (TID ^ SID) >> 4;
|
||||
|
|
Loading…
Reference in a new issue