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; }