mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-09 04:24:36 -05:00
Generalize meowstic edge case
lang sensitive, account for no nickname as well #1905
This commit is contained in:
parent
4dfcafc720
commit
19e73a5f85
|
|
@ -256,9 +256,8 @@ private void ParseFirstLine(string line)
|
|||
Gender = last3.Substring(1, 1);
|
||||
line = line.Substring(0, line.Length - 3);
|
||||
}
|
||||
|
||||
// Meowstic Edge Case
|
||||
if (line == "Meowstic") Gender = "M";
|
||||
else if (line.Contains(species[678])) // Meowstic Edge Case with no gender provided
|
||||
Gender = "M";
|
||||
|
||||
// Nickname Detection
|
||||
if (line.Contains("(") && line.Contains(")"))
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user