mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 00:37:11 +00:00
Fix Meowstic edge case (#1906)
Edge cases with `-F` as forms are already handled in the code
This commit is contained in:
parent
ea227a8113
commit
4dfcafc720
1 changed files with 4 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue