mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-14 16:27:21 +00:00
Fix record clear
This commit is contained in:
parent
627a236956
commit
87bb8f3b3f
1 changed files with 1 additions and 1 deletions
|
@ -561,7 +561,7 @@ namespace PKHeX.Core
|
|||
/// Clears the Technical Record flags for the <see cref="pk"/>.
|
||||
/// </summary>
|
||||
/// <param name="pk">Pokémon to modify.</param>
|
||||
public static void ClearRecordFlags(this PKM pk) => pk.SetRecordFlags(false, 128);
|
||||
public static void ClearRecordFlags(this PKM pk) => pk.SetRecordFlags(false, 112);
|
||||
|
||||
/// <summary>
|
||||
/// Sets the Technical Record flags for the <see cref="pk"/> based on the current moves.
|
||||
|
|
Loading…
Reference in a new issue