mirror of
https://github.com/kwsch/PKHeX
synced 2025-02-17 05:48:44 +00:00
Make Poffin names match in-game text (#2306)
This commit is contained in:
parent
4570c7bb21
commit
44a257b832
1 changed files with 1 additions and 1 deletions
|
@ -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()
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue