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

@ -256,7 +256,10 @@ namespace PKHeX.Core
Gender = last3.Substring(1, 1);
line = line.Substring(0, line.Length - 3);
}
// Meowstic Edge Case
if (line == "Meowstic") Gender = "M";
// Nickname Detection
if (line.Contains("(") && line.Contains(")"))
ParseSpeciesNickname(line);