mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-07-28 15:28:07 -05:00
Fix Showdown Export nicknames
This commit is contained in:
parent
b0200f1a5c
commit
308dfd2c24
|
|
@ -1354,7 +1354,7 @@ public string getText()
|
|||
return "";
|
||||
|
||||
// First Line: Name, Nickname, Gender, Item
|
||||
string result = String.Format(((species[Species] != Nickname) ? "{0} " : "") + "{1}", Nickname,
|
||||
string result = String.Format(((species[Species] != Nickname) ? "{0} ({1})" : "{1}"), Nickname,
|
||||
species[Species] + ((Form ?? "") != "" ? "-" + Form : "")) // Species (& Form if necessary)
|
||||
+ Gender + (Item != 0 ? " @ " + items[Item] : "") + Environment.NewLine;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user