Skip to content

Commit

Permalink
Merge pull request #73 from dkavolis/#72
Browse files Browse the repository at this point in the history
Fix #72
  • Loading branch information
dkavolis authored Jun 23, 2019
2 parents a94b611 + 4531c02 commit 50874a4
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<KSP_DIR_BUILD>C:\Zaidimai\KSP 1.7.0\</KSP_DIR_BUILD>
<KSP_DIR_BUILD>C:\Zaidimai\KSP 1.7.2\</KSP_DIR_BUILD>
<PostBuildCommand>
cd "$(SolutionDir)""
python -m buildtools postbuild -f "$(SolutionDir)config.json" -c "$(Configuration)" -t</PostBuildCommand>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -213,8 +213,8 @@ private static List<Transform> IgnoreModelTransformList(this Part p)
string transformString =
(string)module.GetType().GetField(currentPartModuleTransforms[j]).GetValue(module);
Transform.AddRange(string.IsNullOrEmpty(transformString)
? p.FindModelComponents<Transform>(transformString)
: p.FindModelComponents<Transform>(currentPartModuleTransforms[j]));
? p.FindModelComponents<Transform>(currentPartModuleTransforms[j])
: p.FindModelComponents<Transform>(transformString));
}
}

Expand Down
Binary file not shown.
Binary file modified GameData/FerramAerospaceResearch/Plugins/ferramGraph.dll
Binary file not shown.
Binary file modified bin/Debug/FerramAerospaceResearch.dll
Binary file not shown.
Binary file modified bin/Debug/ferramGraph.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion config.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"ModDir": "$(SolutionDir)$(ModDirRelative)",
"PluginDir": "$(ModDir)Plugins/",
"AssetDir": "$(ModDir)Assets/",
"KSP_DIR_INSTALL": "C:/Zaidimai/KSP 1.7.0/",
"KSP_DIR_INSTALL": "C:/Zaidimai/KSP 1.7.2/",
"KSPGameData": "$(KSP_DIR_INSTALL)GameData/",
"GameDir": "$(KSPGameData)$(ModName)/",
"VersionMajor": 0,
Expand Down

0 comments on commit 50874a4

Please sign in to comment.