Fixed typo in GameOverModule

This commit is contained in:
josshmot 2025-04-11 05:09:46 +10:00
parent ad3802d383
commit a8d944a4c9

View File

@ -25,7 +25,7 @@ namespace NewHorizons.External.Modules
public string condition; public string condition;
/// <summary> /// <summary>
/// Path to the audio file to use as custom music for the credits. When creditsType is set to "custom", credits will be silent unless this is specified. /// Path to the audio file to use as custom music for the credits. When creditsType is set to "custom", credits will be silent unless this attribute is specified.
/// Note: only applies when creditsType is set to "custom". /// Note: only applies when creditsType is set to "custom".
/// </summary> /// </summary>
public string audio = string.Empty; // Explicitly declaring this for condition in NHGameOverManager public string audio = string.Empty; // Explicitly declaring this for condition in NHGameOverManager
@ -37,7 +37,7 @@ namespace NewHorizons.External.Modules
[DefaultValue(1f)] public float audioVolume = 1f; [DefaultValue(1f)] public float audioVolume = 1f;
/// <summary> /// <summary>
/// Determines if the credits music should loop () /// Determines if the credits music should loop.
/// Note: only applies when creditsType is set to "custom". /// Note: only applies when creditsType is set to "custom".
/// </summary> /// </summary>
[DefaultValue(false)] public bool audioLooping = false; [DefaultValue(false)] public bool audioLooping = false;