From 44a257b8328b2db4e92dcd76cb72d72f67b8d6cc Mon Sep 17 00:00:00 2001 From: Matt Date: Tue, 14 May 2019 14:21:34 -0400 Subject: [PATCH] Make Poffin names match in-game text (#2306) --- PKHeX.WinForms/Subforms/Save Editors/Gen4/PoffinCase4Editor.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PKHeX.WinForms/Subforms/Save Editors/Gen4/PoffinCase4Editor.cs b/PKHeX.WinForms/Subforms/Save Editors/Gen4/PoffinCase4Editor.cs index 65ea1c0c4..6516a6dc3 100644 --- a/PKHeX.WinForms/Subforms/Save Editors/Gen4/PoffinCase4Editor.cs +++ b/PKHeX.WinForms/Subforms/Save Editors/Gen4/PoffinCase4Editor.cs @@ -30,7 +30,7 @@ private void RefreshList() Updating = false; } - private string GetPoffinText(int i) => $"{i + 1:000} - {Case.Poffins[i].Type.ToString().Replace('_', '/')}"; + private string GetPoffinText(int i) => $"{i + 1:000} - {Case.Poffins[i].Type.ToString().Replace('_', '-')}"; public void Save() {