This commit is contained in:
Noah Pilarski 2022-08-10 00:30:13 -04:00
parent bd034dbaa8
commit 9be4ec77bf
2 changed files with 4 additions and 4 deletions

View File

@ -36,7 +36,7 @@ namespace NewHorizons.External.Configs
public string factRequiredForWarp;
/// <summary>
/// The duration of the time loop.
/// The duration of the time loop in minutes. This is the time the sun explodes. End Times plays 85 seconds before this time, and your memories get sent back about 40 seconds after this time.
/// </summary>
[DefaultValue(22f)] public float loopDuration = 22f;

View File

@ -9,17 +9,17 @@ namespace NewHorizons.External.Modules.VariableSize
public class StarModule : VariableSizeModule
{
/// <summary>
/// Colour of the star at the end of its life.
/// Colour of the star at the end of its lifespan.
/// </summary>
public MColor endTint;
/// <summary>
/// Should this star explode after 22 minutes?
/// Should this star explode at the end of its lifespan?
/// </summary>
[DefaultValue(true)] public bool goSupernova = true;
/// <summary>
/// How long this star will last until it supernovas.
/// How long in minutes this star will last until it supernovas.
/// </summary>
[DefaultValue(22f)]
public float lifespan = 22f;