Skip to content

Commit

Permalink
ForceLowerFormIdRangeOption made nullable for convenience
Browse files Browse the repository at this point in the history
  • Loading branch information
Noggog committed Apr 11, 2024
1 parent b56a524 commit 0dbc30e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace Mutagen.Bethesda.Plugins.Binary.Parameters;
public abstract class AMinimumFormIdOption
{
public static AutomaticLowerFormIdRangeOption Automatic { get; } = new AutomaticLowerFormIdRangeOption();
public static ForceLowerFormIdRangeOption Force(bool on)
public static ForceLowerFormIdRangeOption Force(bool? on)
{
return new ForceLowerFormIdRangeOption()
{
Expand All @@ -34,5 +34,5 @@ public class ForceLowerFormIdRangeOption : AMinimumFormIdOption
/// <summary>
/// Whether to force using lower FormID ranges on or off
/// </summary>
public bool ForceLowerRangeSetting { get; init; }
public bool? ForceLowerRangeSetting { get; init; }
}

0 comments on commit 0dbc30e

Please sign in to comment.