From 7e553155e103cece1835fc67bb7588c669ddcd72 Mon Sep 17 00:00:00 2001 From: Matt Date: Tue, 16 Apr 2019 13:54:29 -0400 Subject: [PATCH] Fix PKM conversion prompt order (#2285) --- PKHeX.Core/PKM/Util/PKMConverter.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/PKHeX.Core/PKM/Util/PKMConverter.cs b/PKHeX.Core/PKM/Util/PKMConverter.cs index f6872e9ee..71d674c53 100644 --- a/PKHeX.Core/PKM/Util/PKMConverter.cs +++ b/PKHeX.Core/PKM/Util/PKMConverter.cs @@ -243,15 +243,15 @@ private static PKM ConvertPKM(PKM pk, Type PKMType, Type fromType, out string co int toFormat = toName.Last() - '0'; if (fromFormat > toFormat && fromFormat != 2) { - comment = string.Format(MsgPKMConvertFailFormat, toName, fromName); + comment = string.Format(MsgPKMConvertFailFormat, fromName, toName); return null; } var pkm = ConvertPKM(pk, PKMType, toFormat, ref comment); comment = pkm == null - ? string.Format(MsgPKMConvertFailFormat, toName, fromName) - : string.Format(MsgPKMConvertSuccess, toName, fromName); + ? string.Format(MsgPKMConvertFailFormat, fromName, toName) + : string.Format(MsgPKMConvertSuccess, fromName, toName); return pkm; }