From 4ccbce5f24a9a7a4cf89aaab4ab18f5f4f656efd Mon Sep 17 00:00:00 2001 From: javierhimura Date: Thu, 16 Feb 2017 12:06:05 +0100 Subject: [PATCH] Fix VC2 --- PKHeX/PKM/PKM.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PKHeX/PKM/PKM.cs b/PKHeX/PKM/PKM.cs index 951bb7480..32dd885ec 100644 --- a/PKHeX/PKM/PKM.cs +++ b/PKHeX/PKM/PKM.cs @@ -473,7 +473,7 @@ public bool InhabitedGeneration(int Generation, int species = -1) int gen = GenNumber; switch (Generation) { - case 1: return Format == 1 || VC1; + case 1: return Format == 1 || VC; case 2: return Format <= 2 || VC2; case 3: return Gen3; case 4: return 3 <= gen && gen <= 4;