mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
bb6e45db60
Extract PP verifier Add disabling of wordfilter for formats < 6 Add context-specific bypasses for nickname/handler checks
10 lines
370 B
C#
10 lines
370 B
C#
using System.ComponentModel;
|
|
|
|
namespace PKHeX.Core;
|
|
|
|
[TypeConverter(typeof(ExpandableObjectConverter))]
|
|
public sealed class BulkAnalysisSettings
|
|
{
|
|
[LocalizedDescription("Checks the save file data and Current Handler state to determine if the Pokémon's Current Handler does not match the expected value.")]
|
|
public bool CheckActiveHandler { get; set; } = true;
|
|
}
|