This commit is contained in:
Kurt 2023-12-17 17:26:38 -08:00
parent 10cae1316e
commit c892225a55
3 changed files with 9 additions and 3 deletions

View file

@ -411,7 +411,12 @@ public sealed class SAV9SV : SaveFile, ISaveBlock9Main, ISCBlockArray, ISaveFile
"FSYS_CLUB_HUD_COACH_TEACHER_MATH",
];
// extra safety
foreach (var block in blocks)
Accessor.GetBlock(block).SetValue(SCTypeCode.Bool2);
{
var hash = (uint)FnvHash.HashFnv1a_64(block);
if (Accessor.TryGetBlock(hash, out var flag))
flag.ChangeBooleanType(SCTypeCode.Bool2);
}
}
}

View file

@ -1,4 +1,4 @@
PKHeX - By Kaphotics
PKHeX - By Kaphotics
http://projectpokemon.org/pkhex/
23/12/18 - New Update:
@ -6,7 +6,7 @@ http://projectpokemon.org/pkhex/
- - Requires Windows 64bit operating system, with the .NET Desktop Runtime 8.0.x
- - https://dotnet.microsoft.com/en-us/download/dotnet/8.0
- Added support for Scarlet & Violet 3.0.0 (Indigo Disk)
- Legality: Added encounters / changes as per Teal Mask DLC adjustments.
- Legality: Added encounters / changes as per Indigo Disk DLC adjustments.
- - Will still have issues with crossovers, Minior, and encounter locations. Will be addressed next release.
- - Fixed: Gen4 Manaphy PID rerolling behavior updated. Thanks @Lincoln-LM!
- Added: Hover preview now shows a custom preview tooltip. Old behavior can be reverted to via settings.

View file

@ -767,6 +767,7 @@ namespace PKHeX.WinForms
B_UnlockCoaches.TabIndex = 66;
B_UnlockCoaches.Text = "Unlock All Coaches";
B_UnlockCoaches.UseVisualStyleBackColor = true;
B_UnlockCoaches.Click += B_UnlockCoaches_Click;
//
// B_ActivateSnacksworthLegendaries
//