Update WC8.cs

This commit is contained in:
Kurt 2020-07-18 10:27:44 -05:00
parent 5c7f992ea9
commit 035bac1ed3

View File

@ -95,6 +95,10 @@ public override bool IsShiny
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;