Z-A: Remove outdated comment in BallUseLegality.cs (#4664)

Removed comment for Dream/Beast Ball legality in ZA. Ball is available with the introduction of the Mega Dimension DLC.
This commit is contained in:
hexbyt3 2025-12-18 16:16:52 -06:00 committed by GitHub
parent bc0f255ae3
commit cdbc2b5599
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -35,7 +35,7 @@ public static bool IsBallPermitted(ulong permit, byte ball)
8 when GameVersion.BDSP.Contains(version) => WildPokeBalls4_HGSS,
8 when version is GameVersion.PLA => WildPokeBalls8a,
8 => GameVersion.GO == version ? WildPokeballs8g_WithRaid : WildPokeballs8,
9 when version is GameVersion.ZA => WildPokeballs9a, // Dream Ball and Beast Ball not available
9 when version is GameVersion.ZA => WildPokeballs9a,
9 => WildPokeballs9,
_ => 0,
};