mirror of
https://github.com/kwsch/PKHeX
synced 2025-02-18 06:18:33 +00:00
Private use character fixing
Not allowing fullwidth to be used for NN
This commit is contained in:
parent
2705e73f64
commit
4abc858c59
1 changed files with 3 additions and 6 deletions
|
@ -691,12 +691,9 @@ namespace PKHeX
|
|||
Label_OTGender.Text = gendersymbols[1];
|
||||
else Label_OTGender.Text = gendersymbols[0];
|
||||
|
||||
// Nidoran Gender Fixing Text
|
||||
if (!Convert.ToBoolean(isnick))
|
||||
// Private Use Character Fixing Text
|
||||
{
|
||||
if (nicknamestr.Contains((char)0xE08F))
|
||||
nicknamestr = Regex.Replace(nicknamestr, "\uE08F", "\u2640");
|
||||
else if (nicknamestr.Contains((char)0xE08E))
|
||||
nicknamestr = Regex.Replace(nicknamestr, "\uE08E", "\u2642");
|
||||
}
|
||||
populateMarkings(markings);
|
||||
|
|
Loading…
Add table
Reference in a new issue