From 308dfd2c24ef0226efcb43458c963c0808ad640a Mon Sep 17 00:00:00 2001 From: Kurt Date: Sun, 20 Dec 2015 10:50:09 -0800 Subject: [PATCH] Fix Showdown Export nicknames --- Misc/PKX.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;