From 346c284994ae7028ebbe8e59fea2eadcfcb3a197 Mon Sep 17 00:00:00 2001 From: Kurt Date: Thu, 10 Sep 2020 21:53:43 -0700 Subject: [PATCH] Allow pkrs on gen2 eggs See #1257 item 7; it appears this info on Bulbapedia is incorrect -- disassembly does not care if the pkm slot is an egg or not. https://github.com/pret/pokecrystal/blob/5f197c53f47e19b860df7c92bd1971f2a73f1156/engine/events/pokerus/pokerus.asm#L7 --- PKHeX.Core/Legality/Verifiers/MiscVerifier.cs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/PKHeX.Core/Legality/Verifiers/MiscVerifier.cs b/PKHeX.Core/Legality/Verifiers/MiscVerifier.cs index a156f14b6..443f44615 100644 --- a/PKHeX.Core/Legality/Verifiers/MiscVerifier.cs +++ b/PKHeX.Core/Legality/Verifiers/MiscVerifier.cs @@ -70,11 +70,7 @@ public void VerifyMiscG1(LegalityAnalysis data) { var pkm = data.pkm; if (pkm.IsEgg) - { VerifyMiscEggCommon(data); - if (pkm.PKRS_Cured || pkm.PKRS_Infected) - data.AddLine(GetInvalid(LEggPokerus, Egg)); - } if (!(pkm is PK1 pk1)) return;