mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-08-28 11:15:01 -05:00
Fix showdown export generation specific forms
Adds the optional argument (default 6, not 7). Closes #664
This commit is contained in:
@@ -212,7 +212,7 @@ internal static string getShowdownText(PKM pkm)
|
||||
{
|
||||
if (pkm.Species == 0) return "";
|
||||
|
||||
string[] Forms = PKX.getFormList(pkm.Species, types, forms, new[] {"", "F", ""});
|
||||
string[] Forms = PKX.getFormList(pkm.Species, types, forms, new[] {"", "F", ""}, pkm.Format);
|
||||
ShowdownSet Set = new ShowdownSet
|
||||
{
|
||||
Nickname = pkm.Nickname,
|
||||
|
||||
Reference in New Issue
Block a user