From ab237b970e54f076283ce60fe9f8a48af9056550 Mon Sep 17 00:00:00 2001 From: Kaphotics Date: Tue, 22 Nov 2016 10:54:49 -0800 Subject: [PATCH] Bump max species to 802 #467 part 1 --- PKHeX/PKM/ShowdownSet.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PKHeX/PKM/ShowdownSet.cs b/PKHeX/PKM/ShowdownSet.cs index 5f7c69dd1..2ab8cb64a 100644 --- a/PKHeX/PKM/ShowdownSet.cs +++ b/PKHeX/PKM/ShowdownSet.cs @@ -16,7 +16,7 @@ public class ShowdownSet private static readonly string[] moves = Util.getMovesList("en"); private static readonly string[] abilities = Util.getAbilitiesList("en"); private static readonly string[] hptypes = types.Skip(1).ToArray(); - private const int MAX_SPECIES = 721; + private const int MAX_SPECIES = 802; // Default Set Data public string Nickname { get; set; }