Skip to content
This repository has been archived by the owner on Jan 9, 2025. It is now read-only.

Commit

Permalink
Version bump and small scan barycentre fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Xjph committed Oct 24, 2021
1 parent 3d68e56 commit 2b29f9d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Observatory/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.5.21.198")]
[assembly: AssemblyFileVersion("0.5.21.198")]
[assembly: AssemblyVersion("0.5.21.297")]
[assembly: AssemblyFileVersion("0.5.21.297")]
2 changes: 1 addition & 1 deletion Observatory/ScanReader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ private bool DefaultInterest()
}

// Tiny object
if (settings.TinyObject && scanEvent.StarType == null && scanEvent.Radius < 300000 && !isRing)
if (settings.TinyObject && scanEvent.StarType == null && scanEvent.Radius < 300000 && !isRing && scanEvent.PlanetClass != "BaryCentre")
{
Interest.Add((scanEvent.BodyName, "Small Body", $"Radius: {Math.Truncate((double)scanEvent.Radius / 1000)}km"));
}
Expand Down

0 comments on commit 2b29f9d

Please sign in to comment.