From 45df87f8cc1c94a6fc4bf97b865c3e1129d1d419 Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Sun, 4 Sep 2016 15:21:46 -0700 Subject: [PATCH] PK2 -> PK1 Conversion fix --- PKHeX/PKM/PKMConverter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PKHeX/PKM/PKMConverter.cs b/PKHeX/PKM/PKMConverter.cs index 55fd04f4d..7ea43e1f1 100644 --- a/PKHeX/PKM/PKMConverter.cs +++ b/PKHeX/PKM/PKMConverter.cs @@ -125,7 +125,7 @@ namespace PKHeX if (1 <= pk.Species && pk.Species <= 151) { foreach (var move in new[] { pk.Move1, pk.Move2, pk.Move3, pk.Move4}) - if (move < 1 || move > 165) + if (move < 0 || move > 165) { comment = $"Pokemon cannot be converted due to invalid move: {Main.movelist[move]}"; return null;