From bd9059ded6cd684e14988b80fb90100ba676d2bc Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Sat, 1 Aug 2020 15:13:38 -0700 Subject: [PATCH] Fix odd formatting --- SabreTools/Features/BaseFeature.cs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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