Update StarModule.cs

This commit is contained in:
Noah 2022-05-25 20:02:53 -04:00 committed by GitHub
parent 923c071a99
commit 6e84bde604
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,7 +21,7 @@ namespace NewHorizons.External.Modules.VariableSize
/// <summary>
/// Should we add a star controller to this body? If you want clouds to work on a binary brown dwarf system, set this to false.
/// </summary>
[DefaultValue(true)] public bool hasStarController { get; set; } = true;
[DefaultValue(true)] public bool hasStarController = true;
/// <summary>
/// The default sun has its own atmosphere that is different from regular planets. If you want that, set this to
@ -56,4 +56,4 @@ namespace NewHorizons.External.Modules.VariableSize
/// </summary>
public MColor tint;
}
}
}