mirror of
https://github.com/kwsch/PKHeX
synced 2025-02-17 05:48:44 +00:00
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:
parent
3764e15867
commit
bbdb21c626
1 changed files with 1 additions and 1 deletions
|
@ -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");
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue