diff --git a/Misc/PKX.cs b/Misc/PKX.cs index 3459c4d91..4f6a6115f 100644 --- a/Misc/PKX.cs +++ b/Misc/PKX.cs @@ -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;