diff --git a/TabletopTweaks-Core/Utilities/FeatTools.cs b/TabletopTweaks-Core/Utilities/FeatTools.cs index 476ba0e6..0638557f 100644 --- a/TabletopTweaks-Core/Utilities/FeatTools.cs +++ b/TabletopTweaks-Core/Utilities/FeatTools.cs @@ -41,15 +41,20 @@ public static class FeatTools { Selections.SylvanTricksterTalentSelection, Selections.SlayerTalentSelection10, Selections.SlayerTalentSelection6, - Selections.SlayerTalentSelection2, - Selections.SkaldTalentSelection, + Selections.SlayerTalentSelection2, Selections.RogueTalentSelection, - Selections.LoremasterRogueTalentSelection, - Selections.BardTalentSelection, - Selections.BardTalentSelection2 + Selections.LoremasterRogueTalentSelection }; TalentSelections.ForEach(selection => selection.AddFeatures(feature)); } + public static void AddAsBardTalent(BlueprintFeature feature) { + var BardSelections = new BlueprintFeatureSelection[] { + Selections.BardTalentSelection, + Selections.BardTalentSelection2, + Selections.SkaldTalentSelection + }; + BardSelections.ForEach(selection => selection.AddFeatures(feature)); + } public static void AddAsArcanistExploit(BlueprintFeature feature) { var TalentSelections = new BlueprintFeatureSelection[] { Selections.ExploiterExploitSelection,