From bc45660f999611b0dae7c40bd9689216e1e2e896 Mon Sep 17 00:00:00 2001 From: Kurt Date: Tue, 4 Feb 2020 19:06:33 -0800 Subject: [PATCH] Update legal raid clamp https: //github.com/kwsch/PKHeX/issues/2681#issuecomment-582215498 Co-Authored-By: slp32 --- PKHeX.Core/Saves/Substructures/Gen8/RaidSpawnList8.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PKHeX.Core/Saves/Substructures/Gen8/RaidSpawnList8.cs b/PKHeX.Core/Saves/Substructures/Gen8/RaidSpawnList8.cs index 0e45ceb54..041500c01 100644 --- a/PKHeX.Core/Saves/Substructures/Gen8/RaidSpawnList8.cs +++ b/PKHeX.Core/Saves/Substructures/Gen8/RaidSpawnList8.cs @@ -7,7 +7,7 @@ public sealed class RaidSpawnList8 : SaveBlock { public RaidSpawnList8(SaveFile sav, SCBlock block) : base(sav, block.Data) { } - public const int RaidCountLegal = 93; + public const int RaidCountLegal = 100; public const int RaidCount = 111; public RaidSpawnDetail GetRaid(int entry) => new RaidSpawnDetail(Data, entry * RaidSpawnDetail.SIZE);