Skip to content

Commit

Permalink
small test releases
Browse files Browse the repository at this point in the history
  • Loading branch information
GER-Space committed Mar 8, 2018
1 parent bc8e1eb commit 041a7ed
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Binary file modified GameData/KerbalKonstructs/KerbalKonstructs.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion src/Core/StaticObjects/StaticDatabase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ internal static void UpdateCache(Vector3 playerPos)

if (FlightGlobals.ActiveVessel != null)
{
vPlayerPos = FlightGlobals.ActiveVessel.GetTransform().position;
vPlayerPos = FlightGlobals.ActiveVessel.GetWorldPos3D();
//Log.Normal("StaticDatabase.updateCache(): using active vessel " + FlightGlobals.ActiveVessel.vesselName);
}
else
Expand Down
2 changes: 1 addition & 1 deletion src/KerbalKonstructs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ public void updateCache()
}
else if (FlightGlobals.ActiveVessel != null)
{
playerPos = FlightGlobals.ActiveVessel.transform.position;
playerPos = FlightGlobals.ActiveVessel.GetWorldPos3D();
//Log.Normal("updateCache using ActiveVessel as playerPos" + FlightGlobals.ActiveVessel.vesselName);
}
else if (HighLogic.LoadedScene == GameScenes.SPACECENTER)
Expand Down
4 changes: 2 additions & 2 deletions src/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.0.0.0")]
[assembly: AssemblyFileVersion("1.3.0.1")]
[assembly: AssemblyInformationalVersion("1.3.0.1")]
[assembly: AssemblyFileVersion("1.3.0.2")]
[assembly: AssemblyInformationalVersion("1.3.0.2")]
[assembly: KSPAssembly("KerbalKonstructs", 0, 9)]

0 comments on commit 041a7ed

Please sign in to comment.