Skip to content

Commit

Permalink
Fix for 1.4.4g
Browse files Browse the repository at this point in the history
  • Loading branch information
Vek17 committed Sep 22, 2022
1 parent 282df33 commit e58b6ba
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 12 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## Version 2.3.1a
* Release for 1.4.4g

## Version 2.3.1
* Release for 1.4.0

Expand Down
11 changes: 2 additions & 9 deletions TabletopTweaks-Base.sln
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.29102.190
# Visual Studio Version 17
VisualStudioVersion = 17.3.32819.101
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{A53D1DF2-A1EA-4579-A8C8-88EC564393F9}"
ProjectSection(SolutionItems) = preProject
Expand All @@ -14,20 +14,13 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TabletopTweaks-Base", "TabletopTweaks-Base\TabletopTweaks-Base.csproj", "{C03B79A7-F087-44A4-92E1-DD3EDFCA487B}"
ProjectSection(ProjectDependencies) = postProject
{E6F4977C-F1BD-45EC-96BA-4BF093C2DFBA} = {E6F4977C-F1BD-45EC-96BA-4BF093C2DFBA}
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{E6F4977C-F1BD-45EC-96BA-4BF093C2DFBA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E6F4977C-F1BD-45EC-96BA-4BF093C2DFBA}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E6F4977C-F1BD-45EC-96BA-4BF093C2DFBA}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E6F4977C-F1BD-45EC-96BA-4BF093C2DFBA}.Release|Any CPU.Build.0 = Release|Any CPU
{C03B79A7-F087-44A4-92E1-DD3EDFCA487B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C03B79A7-F087-44A4-92E1-DD3EDFCA487B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C03B79A7-F087-44A4-92E1-DD3EDFCA487B}.Release|Any CPU.ActiveCfg = Release|Any CPU
Expand Down
13 changes: 12 additions & 1 deletion TabletopTweaks-Base/Bugfixes/Features/Bloodlines.cs
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,18 @@ void AddDragonheirScionPrerequisites(BlueprintArchetype archetype) {
});
var draconicBloodline = Helpers.Create<PrerequisiteFeaturesFromList>(c => {
c.Group = Prerequisite.GroupType.Any;
c.m_Features = DragonDiscipleClass.GetComponent<PrerequisiteFeaturesFromList>().m_Features;
c.m_Features = new BlueprintFeatureReference[] {
DraconicBlackBloodlineRequisiteFeature.ToReference<BlueprintFeatureReference>(),
DraconicBlueBloodlineRequisiteFeature.ToReference<BlueprintFeatureReference>(),
DraconicBrassBloodlineRequisiteFeature.ToReference<BlueprintFeatureReference>(),
DraconicBronzeBloodlineRequisiteFeature.ToReference<BlueprintFeatureReference>(),
DraconicCopperBloodlineRequisiteFeature.ToReference<BlueprintFeatureReference>(),
DraconicGoldBloodlineRequisiteFeature.ToReference<BlueprintFeatureReference>(),
DraconicGreenBloodlineRequisiteFeature.ToReference<BlueprintFeatureReference>(),
DraconicRedBloodlineRequisiteFeature.ToReference<BlueprintFeatureReference>(),
DraconicSilverBloodlineRequisiteFeature.ToReference<BlueprintFeatureReference>(),
DraconicWhiteBloodlineRequisiteFeature.ToReference<BlueprintFeatureReference>()
};
});
archetype.AddComponents(noBloodline, draconicBloodline);
}
Expand Down
4 changes: 2 additions & 2 deletions TabletopTweaks-Base/Info.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
"Author": "Sean Petrie",
"DisplayName": "Tabletop Tweaks Base",
"EntryMethod": "TabletopTweaks.Base.Main.Load",
"GameVersion": "1.4.0",
"GameVersion": "1.4.4g",
"HomePage": "https://github.com/Vek17/TabletopTweaks-Base/releases",
"Id": "TabletopTweaks-Base",
"ManagerVersion": "0.23.0",
"Repository": "https://raw.githubusercontent.com/Vek17/TabletopTweaks-Base/master/Repository.json",
"Requirements": [ "TabletopTweaks-Core" ],
"LoadAfter": [ "TabletopTweaks-Core" ],
"Version": "2.3.1"
"Version": "2.3.1a"
}

0 comments on commit e58b6ba

Please sign in to comment.