From a5d0ab0fa607f6c0fe1e941b79dccbdc2623269a Mon Sep 17 00:00:00 2001 From: ReignOfComputer Date: Mon, 26 Dec 2016 17:49:53 +0800 Subject: [PATCH] Remove extra bracket in filename when exporting form --- PKHeX/PKM/PKM.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PKHeX/PKM/PKM.cs b/PKHeX/PKM/PKM.cs index b21da987c..113dc7899 100644 --- a/PKHeX/PKM/PKM.cs +++ b/PKHeX/PKM/PKM.cs @@ -301,7 +301,7 @@ public virtual string FileName { 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}"; }