Fix Meowstic edge case (#1906)

Edge cases with `-F` as forms are already handled in the code
This commit is contained in:
Archit Date 2018-04-23 00:11:09 +08:00 committed by Kurt
parent ea227a8113
commit 4dfcafc720

View file

@ -257,6 +257,9 @@ namespace PKHeX.Core
line = line.Substring(0, line.Length - 3);
}
// Meowstic Edge Case
if (line == "Meowstic") Gender = "M";
// Nickname Detection
if (line.Contains("(") && line.Contains(")"))
ParseSpeciesNickname(line);