Make Poffin names match in-game text (#2306)

This commit is contained in:
Matt 2019-05-14 14:21:34 -04:00 committed by Kurt
parent 4570c7bb21
commit 44a257b832

View file

@ -30,7 +30,7 @@ namespace PKHeX.WinForms
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()
{