Match frost defaults with ghost matter values

This commit is contained in:
Noah Pilarski 2022-11-25 19:50:29 -05:00
parent e79b82c651
commit 66fa54426a

View File

@ -467,15 +467,15 @@ namespace NewHorizons.External.Modules
/// <summary> /// <summary>
/// The rate at which the frost effect will get stronger /// The rate at which the frost effect will get stronger
/// </summary> /// </summary>
[DefaultValue(0.1f)] [DefaultValue(0.5f)]
public float frostRate = 0.1f; public float frostRate = 0.5f;
/// <summary> /// <summary>
/// The maximum strength of frost this volume can give /// The maximum strength of frost this volume can give
/// </summary> /// </summary>
[Range(0f, 1f)] [Range(0f, 1f)]
[DefaultValue(0.5f)] [DefaultValue(0.91f)]
public float maxFrost = 0.5f; public float maxFrost = 0.91f;
} }
[JsonObject] [JsonObject]