Misc tweaks

fixes legality report not showing localized
fixes pcjp5 seed->table generate
removes eternamax from go_home pkl
waiting for raids before hotfixing exe & pushing nuget
This commit is contained in:
Kurt
2025-08-31 17:12:20 -05:00
parent 597bbbcf8d
commit ded9d54399
3 changed files with 4 additions and 4 deletions

View File

@@ -64,12 +64,12 @@ public static uint GetIndex(ushort species)
}
/// <summary>
/// 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.
/// </summary>
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;
}

View File

@@ -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)