mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-10 14:44:24 +00:00
Remove extra bracket in filename when exporting form
This commit is contained in:
parent
a7a97fe084
commit
a5d0ab0fa6
1 changed files with 1 additions and 1 deletions
|
@ -301,7 +301,7 @@ namespace PKHeX
|
|||
{
|
||||
get
|
||||
{
|
||||
string form = AltForm > 0 ? $"-{AltForm:00)}" : "";
|
||||
string form = AltForm > 0 ? $"-{AltForm:00}" : "";
|
||||
string star = IsShiny ? " ★" : "";
|
||||
return $"{Species:000}{form}{star} - {Nickname} - {Checksum:X4}{EncryptionConstant:X8}.{Extension}";
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue