Separate forms from clone check

Only really useful for unowns that have been RNG'd to have the same
PID...
This commit is contained in:
Kurt 2017-05-13 00:01:22 -07:00
parent 3764e15867
commit bbdb21c626

View file

@ -126,7 +126,7 @@ namespace PKHeX.WinForms
{
case 1: return pk.Species.ToString("000") + ((PK1)pk).DV16.ToString("X4");
case 2: return pk.Species.ToString("000") + ((PK2)pk).DV16.ToString("X4");
default: return pk.Species.ToString("000") + pk.PID.ToString("X8") + string.Join(" ", pk.IVs);
default: return pk.Species.ToString("000") + pk.PID.ToString("X8") + string.Join(" ", pk.IVs) + pk.AltForm.ToString("00");
}
};