Generalize meowstic edge case

lang sensitive, account for no nickname as well
#1905
This commit is contained in:
Kurt 2018-04-22 09:53:52 -07:00
parent 4dfcafc720
commit 19e73a5f85

View File

@ -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(")"))