diff --git a/SabreTools/Features/BaseFeature.cs b/SabreTools/Features/BaseFeature.cs index e5e7be2a..0c5cbcd0 100644 --- a/SabreTools/Features/BaseFeature.cs +++ b/SabreTools/Features/BaseFeature.cs @@ -533,12 +533,18 @@ namespace SabreTools.Features } internal const string MatchOfTagsValue = "match-of-tags"; - internal static Feature MatchOfTagsFlag => new Feature( + internal static Feature MatchOfTagsFlag + { + get + { + return new Feature( MatchOfTagsValue, new List() { "-ofg", "--match-of-tags" }, "Allow cloneof and romof tags to match game name filters", FeatureType.Flag, longDescription: "If filter or exclude by game name is used, this flag will allow those filters to be checked against the romof and cloneof tags as well. This can allow for more advanced set-building, especially in arcade-based sets."); + } + } internal const string MergeValue = "merge"; internal static Feature MergeFlag