Fix showdown export generation specific forms

Adds the optional argument (default 6, not 7).
Closes #664
This commit is contained in:
Kurt
2016-12-23 09:37:15 -08:00
parent 48d6ea9f93
commit 00e0e69dd8

View File

@@ -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,