diff --git a/PKHeX.Core/Items/ItemStorage9ZA.cs b/PKHeX.Core/Items/ItemStorage9ZA.cs index 81fba80f6..2066536a0 100644 --- a/PKHeX.Core/Items/ItemStorage9ZA.cs +++ b/PKHeX.Core/Items/ItemStorage9ZA.cs @@ -97,16 +97,12 @@ public sealed class ItemStorage9ZA : IItemStorage public static ReadOnlySpan Unreleased => [ - 0005, // Safari Ball + 0005, // Safari Ball (Season 3 Ranked Reward) 0662, // Mewtwonite X 0663, // Mewtwonite Y - 0576, // Dream Ball (Season 2 Ranked Reward) - 0851, // Beast Ball - - 2575, // Chesnaughtite ]; public int GetMax(InventoryType type) => type switch diff --git a/PKHeX.Core/Legality/Verifiers/Ball/BallUseLegality.cs b/PKHeX.Core/Legality/Verifiers/Ball/BallUseLegality.cs index 8edc98ddb..ac65b561c 100644 --- a/PKHeX.Core/Legality/Verifiers/Ball/BallUseLegality.cs +++ b/PKHeX.Core/Legality/Verifiers/Ball/BallUseLegality.cs @@ -96,5 +96,5 @@ public static bool IsBallPermitted(ulong permit, byte ball) public const ulong WildPokeballs9 = WildPokeballs8; public const ulong WildPokeballs9PreDLC2 = WildPokeballs7 | WildPokeEnhance5; // Same as Gen7 + Dream - public const ulong WildPokeballs9a = WildPokeBalls4_HGSS | (1 << (int)Sport); // no Safari, Dream, Beast + public const ulong WildPokeballs9a = WildPokeBalls4_HGSS | (1 << (int)Sport) | (1 << (int)Dream); // no Safari/Beast }