mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 12:33:06 +00:00
parent
4a20710a96
commit
b798da9b03
1 changed files with 2 additions and 2 deletions
|
@ -177,10 +177,10 @@ namespace PKHeX.WinForms.Controls
|
|||
if (pk.Species == 0)
|
||||
return;
|
||||
|
||||
var path = Path.Combine(Main.CryPath, $"{pk.Species}.wav");
|
||||
var path = Path.Combine(Main.CryPath, $"{pk.Species}-{pk.AltForm}.wav");
|
||||
if (!File.Exists(path))
|
||||
{
|
||||
path = Path.Combine(Main.CryPath, $"{pk.Species}-{pk.AltForm}.wav");
|
||||
path = Path.Combine(Main.CryPath, $"{pk.Species}.wav");
|
||||
if (!File.Exists(path))
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue