From 64be77f46c287b2d40cdbe98694f2cf51f7211f3 Mon Sep 17 00:00:00 2001 From: NPC-C83H Date: Sat, 20 Jun 2020 21:16:36 +0800 Subject: [PATCH] Update legal raid counts (#2878) --- PKHeX.Core/Saves/Substructures/Gen8/RaidSpawnList8.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PKHeX.Core/Saves/Substructures/Gen8/RaidSpawnList8.cs b/PKHeX.Core/Saves/Substructures/Gen8/RaidSpawnList8.cs index db19b10d8..93e0ac308 100644 --- a/PKHeX.Core/Saves/Substructures/Gen8/RaidSpawnList8.cs +++ b/PKHeX.Core/Saves/Substructures/Gen8/RaidSpawnList8.cs @@ -14,8 +14,8 @@ public RaidSpawnList8(SaveFile sav, SCBlock block, int legal) : base(sav, block. CountUsed = legal; } - public const int RaidCountLegal_O0 = 93; - public const int RaidCountLegal_R1 = 59; + public const int RaidCountLegal_O0 = 100; + public const int RaidCountLegal_R1 = 90; public RaidSpawnDetail GetRaid(int entry) => new RaidSpawnDetail(Data, entry * RaidSpawnDetail.SIZE);