mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-11 15:07:11 +00:00
Fix alt form cries from not playing (#2119)
This commit is contained in:
parent
92489ad206
commit
789449f4d6
1 changed files with 1 additions and 1 deletions
|
@ -228,7 +228,7 @@ namespace PKHeX.WinForms.Controls
|
|||
if (pk.Species == 0)
|
||||
return;
|
||||
|
||||
var name = PKX.GetResourceStringSprite(pk.Species, pk.AltForm, pk.Gender, pk.Format).Replace('_','-');
|
||||
var name = PKX.GetResourceStringSprite(pk.Species, pk.AltForm, pk.Gender, pk.Format).Replace('_','-').Substring(1);
|
||||
var path = Path.Combine(Main.CryPath, $"{name}.wav");
|
||||
if (!File.Exists(path))
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue