Remove extra bracket in filename when exporting form

This commit is contained in:
ReignOfComputer 2016-12-26 17:49:53 +08:00
parent a7a97fe084
commit a5d0ab0fa6

View file

@ -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}";
}