mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-09-09 13:35:36 -05:00
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:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Binary file not shown.
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user