Skip to content

Commit

Permalink
Fixed max orbit radius of objects around system center was 10 times t…
Browse files Browse the repository at this point in the history
…o much.
  • Loading branch information
thorwin99 committed Sep 23, 2021
1 parent be4fd87 commit 1192fa5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ private double CalculateMaxOrbitRadius()
if (center != null && m_object.ParentId == center.Id)
{
int count = center.ChildObjects.Count + 1;
return count * MySettingsSession.Static.Settings.GeneratorSettings.MinMaxOrbitDistance.Max / 100;
return count * MySettingsSession.Static.Settings.GeneratorSettings.MinMaxOrbitDistance.Max / 1000;
}
else
{
Expand Down

0 comments on commit 1192fa5

Please sign in to comment.