diff --git a/PKHeX.Core/Legality/RNG/ClassicEra/Gen3/PCJPFifthAnniversary.cs b/PKHeX.Core/Legality/RNG/ClassicEra/Gen3/PCJPFifthAnniversary.cs index 5a2469057..b10d39a46 100644 --- a/PKHeX.Core/Legality/RNG/ClassicEra/Gen3/PCJPFifthAnniversary.cs +++ b/PKHeX.Core/Legality/RNG/ClassicEra/Gen3/PCJPFifthAnniversary.cs @@ -64,12 +64,12 @@ public static uint GetIndex(ushort species) } /// - /// Check if the given species, shiny, and wish moveset status match the given rand result. + /// Check if the given species, shiny, and wish moveset status match the given seed. /// - public static bool IsMatch(ushort species, bool shiny, bool wish, uint rand) + public static bool IsMatch(ushort species, bool shiny, bool wish, ushort u16) { var index = GetIndex(species); - var result = GetResult(rand); + var result = GetResult(u16); return index == result.Index && wish == result.Wish && shiny == result.Shiny; } diff --git a/PKHeX.Core/Resources/legality/wild/encounter_go_home.pkl b/PKHeX.Core/Resources/legality/wild/encounter_go_home.pkl index cee40749a..3371a107f 100644 Binary files a/PKHeX.Core/Resources/legality/wild/encounter_go_home.pkl and b/PKHeX.Core/Resources/legality/wild/encounter_go_home.pkl differ diff --git a/PKHeX.WinForms/MainWindow/Main.cs b/PKHeX.WinForms/MainWindow/Main.cs index ddd3f54aa..53e35029f 100644 --- a/PKHeX.WinForms/MainWindow/Main.cs +++ b/PKHeX.WinForms/MainWindow/Main.cs @@ -1056,7 +1056,7 @@ private void ClickLegality(object? sender, EventArgs e) private static void DisplayLegalityReport(LegalityAnalysis la) { bool verbose = ModifierKeys == Keys.Control ^ Settings.Display.ExportLegalityAlwaysVerbose; - var report = la.Report(verbose); + var report = la.Report(CurrentLanguage, verbose); if (verbose) { if (Settings.Display.ExportLegalityNeverClipboard)